aboutsummaryrefslogtreecommitdiffstats
path: root/build-root/scripts/version
diff options
context:
space:
mode:
Diffstat (limited to 'build-root/scripts/version')
-rwxr-xr-xbuild-root/scripts/version8
1 files changed, 6 insertions, 2 deletions
diff --git a/build-root/scripts/version b/build-root/scripts/version
index bbafb9bbf8f..bf7e31551b9 100755
--- a/build-root/scripts/version
+++ b/build-root/scripts/version
@@ -4,6 +4,10 @@ TAG=$(git describe | cut -d- -f1 | sed -e 's/^v//')
ADD=$(git describe | cut -s -d- -f2)
CMT=$(git describe --dirty --match 'v*'| cut -s -d- -f3,4)
+if [ -n "${BUILD_NUMBER}" ]; then
+ BLD="~b${BUILD_NUMBER}"
+fi
+
if [ "$1" = "rpm-version" ]; then
echo ${TAG}
exit
@@ -12,12 +16,12 @@ fi
if [ "$1" = "rpm-release" ]; then
[ -z "${ADD}" ] && echo release && exit
CMT=$(git describe --dirty --match 'v*'| cut -s -d- -f3,4 | sed 's/-/_/')
- echo ${ADD}~${CMT}
+ echo ${ADD}~${CMT}${BLD}
exit
fi
if [ -n "${ADD}" ]; then
- echo ${TAG}-${ADD}~${CMT}
+ echo ${TAG}-${ADD}~${CMT}${BLD}
else
echo ${TAG}
fi