From e2b5ed6c7ad9222eb1f38cfb3a4cc8421e1c34ef Mon Sep 17 00:00:00 2001 From: Cnly Date: Tue, 27 Aug 2019 01:33:51 +0800 Subject: [PATCH] docs: fix template argument for mktemp in install.sh --- docs/content/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/install.sh b/docs/content/install.sh index 27e501866..90c400c93 100755 --- a/docs/content/install.sh +++ b/docs/content/install.sh @@ -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