From 50ee0d8ccc1b43582df63e880e22f1ab65da8c63 Mon Sep 17 00:00:00 2001 From: Steve Gearhart Date: Thu, 28 Mar 2024 11:03:02 +0000 Subject: [PATCH] Update mkOSDistDeb-NN.sh - replace tilde with dash in test versions build name. --- Building/Linux/mkOSDistDeb-NN.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Building/Linux/mkOSDistDeb-NN.sh b/Building/Linux/mkOSDistDeb-NN.sh index e8e39353..25ee3b80 100755 --- a/Building/Linux/mkOSDistDeb-NN.sh +++ b/Building/Linux/mkOSDistDeb-NN.sh @@ -93,7 +93,7 @@ if [[ ${VERSION} == *-* ]]; then if [[ ${PRERELEASE} == *rc* ]]; then RC=1 fi - VERSION="${VERSION}~${PRERELEASE}" + VERSION="${VERSION}-${PRERELEASE}" fi GIT_REVISION=`awk '/#define GIT_REVISION / { gsub(/"/, "", $3); print $3 }' ${SRC}/git_info.h` echo Version: ${VERSION}