From 729d930f832d9094fbc370927a4d0b865450f9fd Mon Sep 17 00:00:00 2001 From: Phil Olynyk Date: Fri, 17 Apr 2020 13:15:44 -0400 Subject: [PATCH] fix conditionals in packaging scripts --- Building/Linux/mkDebian9.sh | 3 ++- Building/Linux/mkUbuntu.sh | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Building/Linux/mkDebian9.sh b/Building/Linux/mkDebian9.sh index c4571dc2..268296fe 100755 --- a/Building/Linux/mkDebian9.sh +++ b/Building/Linux/mkDebian9.sh @@ -20,6 +20,7 @@ if [[ ${VERSION} == *-* ]]; then VERSION="${VERSION}~${PRERELEASE}" fi GIT_REVISION=`awk '/#define GIT_REVISION / { gsub(/"/, "", $3); print $3 }' ${SRC}/git_info.h` +echo Version: ${VERSION} # application name appli_name="OSCAR" @@ -29,7 +30,7 @@ pre_rem="rm_usrbin.sh" post_rem="clean_rm.sh" # build folder (absolute path is better) build_folder="/home/$USER/OSCAR/build" -if [ -n ${PRERELEASE} ] && [ ${RC} ] ; then +if [[ -n ${PRERELEASE} && ${RC} ]] ; then appli_name=${appli_name}-test post_inst="ln_usrbin-test.sh" pre_rem="rm_usrbin-test.sh" diff --git a/Building/Linux/mkUbuntu.sh b/Building/Linux/mkUbuntu.sh index eb9c76a9..eef95e23 100755 --- a/Building/Linux/mkUbuntu.sh +++ b/Building/Linux/mkUbuntu.sh @@ -20,6 +20,7 @@ if [[ ${VERSION} == *-* ]]; then VERSION="${VERSION}~${PRERELEASE}" fi GIT_REVISION=`awk '/#define GIT_REVISION / { gsub(/"/, "", $3); print $3 }' ${SRC}/git_info.h` +echo Version: ${VERSION} # application name appli_name="OSCAR" @@ -29,7 +30,7 @@ pre_rem="rm_usrbin.sh" post_rem="clean_rm.sh" # build folder (absolute path is better) build_folder="/home/$USER/OSCAR/build" -if [ -n ${PRERELEASE} ] && [ -z ${RC} ] ; then +if [[ -n ${PRERELEASE} && -z ${RC} ]] ; then appli_name=${appli_name}-test post_inst="ln_usrbin-test.sh" pre_rem="rm_usrbin-test.sh"