diff options
-rwxr-xr-x | src/scripts/version | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/scripts/version b/src/scripts/version index 455ab760352..1c265bff68f 100755 --- a/src/scripts/version +++ b/src/scripts/version @@ -30,6 +30,11 @@ TAG=$(echo ${vstring} | cut -d- -f1 | sed -e 's/^v//') ADD=$(echo ${vstring} | cut -s -d- -f2) POINT=$(echo ${TAG} | cut -d. -f3) +# during make pkg-rpm vstring ends up being vXX.YY, which is not what we expect. Fix it up. +if [ -z "${ADD}" ]; then + ADD="0" +fi + # if this is a "implicit zeroth" release (e.g. 19.08), check if we need to add ".0" # to fix the artifact versioning sorting if [ -z "${POINT}" ]; then |