diff --git a/docs/content/install.sh b/docs/content/install.sh index 2a9760145..632a70af8 100755 --- a/docs/content/install.sh +++ b/docs/content/install.sh @@ -10,7 +10,7 @@ set -e #when adding a tool to the list make sure to also add it's corresponding command further in the script -unzip_tools_list=('unzip' '7z') +unzip_tools_list=('unzip' '7z', 'busybox') usage() { echo "Usage: curl https://rclone.org/install.sh | sudo bash [-s beta]" 1>&2; exit 1; } @@ -133,6 +133,10 @@ case $unzip_tool in '7z') 7z x $rclone_zip -o$unzip_dir ;; + 'busybox') + mkdir -p $unzip_dir + busybox unzip $rclone_zip -d $unzip_dir + ;; esac cd $unzip_dir/*