File tree Expand file tree Collapse file tree 2 files changed +14
-4
lines changed
Expand file tree Collapse file tree 2 files changed +14
-4
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ PROGRAM="osync" # Rsync based two way sync engine with fault tolerance
77AUTHOR=" (C) 2013-2019 by Orsiris de Jong"
88CONTACT=
" http://www.netpower.fr/osync - [email protected] " 99PROGRAM_VERSION=1.3.0-beta2
10- PROGRAM_BUILD=2019052016
10+ PROGRAM_BUILD=2019052101
1111IS_STABLE=false
1212
1313CONFIG_FILE_REVISION_REQUIRED=1.3.0
@@ -6449,6 +6449,11 @@ function GetCommandlineArguments {
64496449
64506450 # Remove leading space if there is one
64516451 opts=" ${opts# * } "
6452+
6453+ # Fix when reloading GetCommandlineArguments
6454+ if [ $_QUICK_SYNC -gt 2 ]; then
6455+ _QUICK_SYNC=2
6456+ fi
64526457}
64536458
64546459GetCommandlineArguments " ${@ } "
@@ -6508,7 +6513,7 @@ else
65086513 exit 1
65096514fi
65106515
6511- # Reload GetCommandLineArguments so we can override config file with run time arguments
6516+ # Reload GetCommandlineArguments so we can override config file with run time arguments
65126517GetCommandlineArguments " ${@ } "
65136518
65146519if [ " $LOGFILE " == " " ]; then
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ PROGRAM="osync" # Rsync based two way sync engine with fault tolerance
77AUTHOR=" (C) 2013-2019 by Orsiris de Jong"
88CONTACT=
" http://www.netpower.fr/osync - [email protected] " 99PROGRAM_VERSION=1.3.0-beta2
10- PROGRAM_BUILD=2019052016
10+ PROGRAM_BUILD=2019052101
1111IS_STABLE=false
1212
1313CONFIG_FILE_REVISION_REQUIRED=1.3.0
@@ -6207,6 +6207,11 @@ function GetCommandlineArguments {
62076207
62086208 # Remove leading space if there is one
62096209 opts=" ${opts# * } "
6210+
6211+ # Fix when reloading GetCommandlineArguments
6212+ if [ $_QUICK_SYNC -gt 2 ]; then
6213+ _QUICK_SYNC=2
6214+ fi
62106215}
62116216
62126217GetCommandlineArguments " ${@ } "
@@ -6266,7 +6271,7 @@ else
62666271 exit 1
62676272fi
62686273
6269- # Reload GetCommandLineArguments so we can override config file with run time arguments
6274+ # Reload GetCommandlineArguments so we can override config file with run time arguments
62706275GetCommandlineArguments " ${@ } "
62716276
62726277if [ " $LOGFILE " == " " ]; then
You can’t perform that action at this time.
0 commit comments