Skip to content

Commit

Permalink
Rebuilt targets
Browse files Browse the repository at this point in the history
  • Loading branch information
deajan committed May 20, 2019
1 parent 22af510 commit 7fffa45
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 4 deletions.
9 changes: 7 additions & 2 deletions dev/debug_osync.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ PROGRAM="osync" # Rsync based two way sync engine with fault tolerance
AUTHOR="(C) 2013-2019 by Orsiris de Jong"
CONTACT="http://www.netpower.fr/osync - [email protected]"
PROGRAM_VERSION=1.3.0-beta2
PROGRAM_BUILD=2019052016
PROGRAM_BUILD=2019052101
IS_STABLE=false

CONFIG_FILE_REVISION_REQUIRED=1.3.0
Expand Down Expand Up @@ -6449,6 +6449,11 @@ function GetCommandlineArguments {

# Remove leading space if there is one
opts="${opts# *}"

# Fix when reloading GetCommandlineArguments
if [ $_QUICK_SYNC -gt 2 ]; then
_QUICK_SYNC=2
fi
}

GetCommandlineArguments "${@}"
Expand Down Expand Up @@ -6508,7 +6513,7 @@ else
exit 1
fi

# Reload GetCommandLineArguments so we can override config file with run time arguments
# Reload GetCommandlineArguments so we can override config file with run time arguments
GetCommandlineArguments "${@}"

if [ "$LOGFILE" == "" ]; then
Expand Down
9 changes: 7 additions & 2 deletions osync.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ PROGRAM="osync" # Rsync based two way sync engine with fault tolerance
AUTHOR="(C) 2013-2019 by Orsiris de Jong"
CONTACT="http://www.netpower.fr/osync - [email protected]"
PROGRAM_VERSION=1.3.0-beta2
PROGRAM_BUILD=2019052016
PROGRAM_BUILD=2019052101
IS_STABLE=false

CONFIG_FILE_REVISION_REQUIRED=1.3.0
Expand Down Expand Up @@ -6207,6 +6207,11 @@ function GetCommandlineArguments {

# Remove leading space if there is one
opts="${opts# *}"

# Fix when reloading GetCommandlineArguments
if [ $_QUICK_SYNC -gt 2 ]; then
_QUICK_SYNC=2
fi
}

GetCommandlineArguments "${@}"
Expand Down Expand Up @@ -6266,7 +6271,7 @@ else
exit 1
fi

# Reload GetCommandLineArguments so we can override config file with run time arguments
# Reload GetCommandlineArguments so we can override config file with run time arguments
GetCommandlineArguments "${@}"

if [ "$LOGFILE" == "" ]; then
Expand Down

0 comments on commit 7fffa45

Please sign in to comment.