docs: fix template argument for mktemp in install.sh

This commit is contained in:
Cnly 2019-08-27 01:33:51 +08:00 committed by Alex Chen
parent 16e7da2cb5
commit e2b5ed6c7a

View file

@ -25,7 +25,7 @@ fi
#create tmp directory and move to it with macOS compatibility fallback #create tmp directory and move to it with macOS compatibility fallback
tmp_dir=`mktemp -d 2>/dev/null || mktemp -d -t 'rclone-install'`; cd $tmp_dir tmp_dir=`mktemp -d 2>/dev/null || mktemp -d -t 'rclone-install.XXXXXXXXXX'`; cd $tmp_dir
#make sure unzip tool is available and choose one to work with #make sure unzip tool is available and choose one to work with