Fixed --skip-deletion not parsing argument

Skip deletion was broken in the argument parsing.
This commit is contained in:
acuthbert 2017-11-21 09:07:48 +00:00 committed by GitHub
parent 0b665be787
commit b195abf59f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -4682,7 +4682,7 @@ function GetCommandlineArguments {
;;
--skip-deletion=*)
opts=$opts" --skip-deletion=\"${i##*=}\""
SKIP_DELETION=${##*=}
SKIP_DELETION=${i##*=}
;;
--on-changes)
sync_on_changes=true