vivo/update-versions.sh
Ralph O'Flinn abd40c25f5
updates to outdated URLs and branch names (#251) (#252)
updates to outdated URLs and branch names (typically master -> main)
2021-10-06 06:38:19 -05:00

12 lines
242 B
Bash
Executable file

#!/bin/sh
if [ -z "$1" ]
then
echo 'New version number required eg. 1.12.0-RC1'
exit 1
fi
mvn versions:set -DgenerateBackupPoms=false -DnewVersion=$1
cd installer
mvn versions:set -DgenerateBackupPoms=false -DnewVersion=$1
cd ..