Merge pull request #120 from acuthbert/master
Fixed --skip-deletion not parsing argument
This commit is contained in:
commit
ff38685105
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