Fixed --skip-deletion not parsing argument

Skip deletion was broken in the argument parsing.
pull/120/head
acuthbert 7 years ago committed by GitHub
parent 0b665be787
commit b195abf59f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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

Loading…
Cancel
Save