Fixed --skip-deletion not parsing argument
Skip deletion was broken in the argument parsing.
This commit is contained in:
parent
0b665be787
commit
b195abf59f
2
osync.sh
2
osync.sh
|
@ -4682,7 +4682,7 @@ function GetCommandlineArguments {
|
||||||
;;
|
;;
|
||||||
--skip-deletion=*)
|
--skip-deletion=*)
|
||||||
opts=$opts" --skip-deletion=\"${i##*=}\""
|
opts=$opts" --skip-deletion=\"${i##*=}\""
|
||||||
SKIP_DELETION=${##*=}
|
SKIP_DELETION=${i##*=}
|
||||||
;;
|
;;
|
||||||
--on-changes)
|
--on-changes)
|
||||||
sync_on_changes=true
|
sync_on_changes=true
|
||||||
|
|
Loading…
Reference in New Issue