1
mirror of https://github.com/rclone/rclone synced 2024-09-19 16:50:09 +02:00

Fix install for Synology

7z check doesn't work due to misplaced comma, so installation fails on Synology.
This commit is contained in:
Mark Otway 2018-12-06 14:03:21 +00:00 committed by Nick Craig-Wood
parent 8fb707e16d
commit 04eae51d11

View File

@ -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', 'busybox')
unzip_tools_list=('unzip' '7z' 'busybox')
usage() { echo "Usage: curl https://rclone.org/install.sh | sudo bash [-s beta]" 1>&2; exit 1; }