Update mkOSDistDeb-NN.sh - replace tilde with dash in test versions build name.

This commit is contained in:
Steve Gearhart 2024-03-28 11:03:02 +00:00
parent ad526e846c
commit 50ee0d8ccc

View File

@ -93,7 +93,7 @@ if [[ ${VERSION} == *-* ]]; then
if [[ ${PRERELEASE} == *rc* ]]; then if [[ ${PRERELEASE} == *rc* ]]; then
RC=1 RC=1
fi fi
VERSION="${VERSION}~${PRERELEASE}" VERSION="${VERSION}-${PRERELEASE}"
fi fi
GIT_REVISION=`awk '/#define GIT_REVISION / { gsub(/"/, "", $3); print $3 }' ${SRC}/git_info.h` GIT_REVISION=`awk '/#define GIT_REVISION / { gsub(/"/, "", $3); print $3 }' ${SRC}/git_info.h`
echo Version: ${VERSION} echo Version: ${VERSION}