From d17ece7e2c41ebb99b8513709c9fd59841505fab Mon Sep 17 00:00:00 2001 From: deajan Date: Tue, 21 May 2019 13:54:12 +0200 Subject: [PATCH] Fixed bogus copy paste --- upgrade-v1.0x-v1.3x.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/upgrade-v1.0x-v1.3x.sh b/upgrade-v1.0x-v1.3x.sh index 4838f75..1fca690 100755 --- a/upgrade-v1.0x-v1.3x.sh +++ b/upgrade-v1.0x-v1.3x.sh @@ -7,7 +7,7 @@ CONTACT="http://www.netpower.fr/osync - ozy@netpower.fr" OLD_PROGRAM_VERSION="v1.0x-v1.2x" NEW_PROGRAM_VERSION="v1.3x" CONFIG_FILE_REVISION=1.3.0 -PROGRAM_BUILD=2019052102 +PROGRAM_BUILD=2019052103 ## type -p does not work on platforms other than linux (bash). If if does not work, always assume output is not a zero exitcode if ! type "$BASH" > /dev/null; then @@ -526,11 +526,11 @@ function AddMissingConfigOptionsAndFixBooleans { exit 1 fi elif grep "^{$KEYWORDS[$counter]}=no" > /dev/null "$config_file"; then + sed -i'.tmp' 's/^'${KEYWORDS[$counter]}'=.*/'${KEYWORDS[$counter]}'=false/g' "$config_file" if [ $? -ne 0 ]; then echo "Cannot rewrite ${[KEYWORDS[$counter]} boolean to false." exit 1 fi - sed -i'.tmp' 's/^'${KEYWORDS[$counter]}'=.*/'${KEYWORDS[$counter]}'=false/g' "$config_file" fi fi counter=$((counter+1))