1
0
mirror of https://github.com/rclone/rclone.git synced 2025-05-13 21:26:56 +02: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 Alex Chen
parent 16e7da2cb5
commit e2b5ed6c7a

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