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 6a038abbe7
commit 10e58b820a

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"