Increment versionPatch by only 1 on EXA.

This commit is contained in:
Benoit Marty
2024-05-21 18:37:24 +02:00
committed by Benoit Marty
parent 75ef72c478
commit 9f7b5dc86e

View File

@@ -117,7 +117,7 @@ version=${version:-${versionCandidate}}
versionMajor=`echo ${version} | cut -d "." -f1`
versionMinor=`echo ${version} | cut -d "." -f2`
versionPatch=`echo ${version} | cut -d "." -f3`
nextPatchVersion=$((versionPatch + 2))
nextPatchVersion=$((versionPatch + 1))
printf "\n================================================================================\n"
printf "Starting the release ${version}\n"