From b195abf59fe5329128f22094fb9e5f7a208a9132 Mon Sep 17 00:00:00 2001 From: acuthbert Date: Tue, 21 Nov 2017 09:07:48 +0000 Subject: [PATCH] Fixed --skip-deletion not parsing argument Skip deletion was broken in the argument parsing. --- osync.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osync.sh b/osync.sh index 6e2c4c3..1e01604 100755 --- a/osync.sh +++ b/osync.sh @@ -4682,7 +4682,7 @@ function GetCommandlineArguments { ;; --skip-deletion=*) opts=$opts" --skip-deletion=\"${i##*=}\"" - SKIP_DELETION=${##*=} + SKIP_DELETION=${i##*=} ;; --on-changes) sync_on_changes=true