From 77e4a05613869615a96c34fa9aed4219aa86cbe8 Mon Sep 17 00:00:00 2001 From: deajan Date: Wed, 8 Feb 2017 08:39:26 +0100 Subject: [PATCH] Bumped version to v1.2RC2 --- dev/n_osync.sh | 2 +- dev/ofunctions.sh | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/dev/n_osync.sh b/dev/n_osync.sh index 35b53a5..9c394b0 100755 --- a/dev/n_osync.sh +++ b/dev/n_osync.sh @@ -3,7 +3,7 @@ PROGRAM="osync" # Rsync based two way sync engine with fault tolerance AUTHOR="(C) 2013-2017 by Orsiris de Jong" CONTACT="http://www.netpower.fr/osync - ozy@netpower.fr" -PROGRAM_VERSION=1.2-RC1+dev +PROGRAM_VERSION=1.2-RC2 PROGRAM_BUILD=2017020702 IS_STABLE=no diff --git a/dev/ofunctions.sh b/dev/ofunctions.sh index 03fdf88..fc03831 100644 --- a/dev/ofunctions.sh +++ b/dev/ofunctions.sh @@ -2,7 +2,7 @@ #### OFUNCTIONS FULL SUBSET #### #### OFUNCTIONS MINI SUBSET #### -_OFUNCTIONS_VERSION=2.1-RC1+dev +_OFUNCTIONS_VERSION=2.1-RC2 _OFUNCTIONS_BUILD=2017020703 #### _OFUNCTIONS_BOOTSTRAP SUBSET #### _OFUNCTIONS_BOOTSTRAP=true @@ -125,7 +125,7 @@ function joinString { function _Logger { local logValue="${1}" # Log to file local stdValue="${2}" # Log to screeen - local toStderr="${3:-false}" # Log to stderr instead of stdout + local toStdErr="${3:-false}" # Log to stderr instead of stdout if [ "$logValue" != "" ]; then echo -e "$logValue" >> "$LOG_FILE" @@ -134,7 +134,7 @@ function _Logger { fi if [ "$stdValue" != "" ] && [ "$_LOGGER_SILENT" != true ]; then - if [ $toStderr == true ]; then + if [ $toStdErr == true ]; then # Force stderr color in subshell (>&2 echo -e "$stdValue")