mirror of
https://github.com/rclone/rclone.git
synced 2025-01-11 08:49:37 +01:00
docs: fix template argument for mktemp in install.sh
This commit is contained in:
parent
16e7da2cb5
commit
e2b5ed6c7a
@ -25,7 +25,7 @@ fi
|
||||
|
||||
|
||||
#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
|
||||
|
Loading…
Reference in New Issue
Block a user