forked from TrueCloudLab/rclone
docs: fix template argument for mktemp in install.sh
This commit is contained in:
parent
16e7da2cb5
commit
e2b5ed6c7a
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue