fix: Add one digit to SLES minor release version
[lttng-modules.git] / scripts / abi-sle-version.sh
index 0d7254ac4e7a9e3e3a709fc3eadc06353dc16dd2..e079e0657e812c45980e801cdd9dc16702bced3f 100755 (executable)
@@ -38,6 +38,6 @@ if [ "x$SLE_RELEASE_PATCH" = "x" ]; then
 fi
 
 # Combine all update numbers into one
-SLE_API_VERSION="$((SLE_RELEASE_MAJOR * 10000 + SLE_RELEASE_MINOR * 100 + SLE_RELEASE_PATCH))"
+SLE_API_VERSION="$((SLE_RELEASE_MAJOR * 100000 + SLE_RELEASE_MINOR * 100 + SLE_RELEASE_PATCH))"
 
 echo ${SLE_API_VERSION}
This page took 0.023273 seconds and 4 git commands to generate.