From 04eae51d110aa9683a9131926ae4735f4e0d76e5 Mon Sep 17 00:00:00 2001 From: Mark Otway Date: Thu, 6 Dec 2018 14:03:21 +0000 Subject: [PATCH] Fix install for Synology 7z check doesn't work due to misplaced comma, so installation fails on Synology. --- 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 632a70af8..33f93e60d 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', 'busybox') +unzip_tools_list=('unzip' '7z' 'busybox') usage() { echo "Usage: curl https://rclone.org/install.sh | sudo bash [-s beta]" 1>&2; exit 1; }