Browse Source

Increment versionPatch by only 1 on EXA.

pull/2904/head
Benoit Marty 4 months ago committed by Benoit Marty
parent
commit
10e58b820a
  1. 2
      tools/release/release.sh

2
tools/release/release.sh

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

Loading…
Cancel
Save