1
0
mirror of https://github.com/rclone/rclone.git synced 2025-12-11 05:43:15 +00:00

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 Nick Craig-Wood
parent 45f7c687e2
commit 8adf22e294

View File

@@ -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