From d694bb30e5f31521bbb150c85aa4e89fabf5bd30 Mon Sep 17 00:00:00 2001 From: jtagcat <38327267+jtagcat@users.noreply.github.com> Date: Wed, 22 Jan 2020 23:35:29 +0000 Subject: [PATCH] install.sh: create ~/.config/rclone directory This allows people with their config already made copy their config to the new server(s), without having to create the directories. --- docs/content/install.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/content/install.sh b/docs/content/install.sh index 90c400c93..01359702f 100755 --- a/docs/content/install.sh +++ b/docs/content/install.sh @@ -187,6 +187,8 @@ esac #update version variable post install version=`rclone --version 2>>errors | head -n 1` +#create the directory for the default configuration folder +mkdir $HOME/.config/rclone -p printf "\n${version} has successfully installed." printf '\nNow run "rclone config" for setup. Check https://rclone.org/docs/ for more details.\n\n'