Correct name of the file added to git after version change in staging

This commit is contained in:
Andy Wilkinson 2020-01-23 16:57:13 +00:00
parent cbee16318f
commit eb08ad02b9
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ git reset --hard HEAD^ > /dev/null
if [[ $nextVersion != $snapshotVersion ]]; then
echo "Setting next development version (v$nextVersion)"
sed -i "s/version=$snapshotVersion/version=$nextVersion/" gradle.properties
git add pom.xml > /dev/null
git add gradle.properties > /dev/null
git commit -m"Next development version (v$nextVersion)" > /dev/null
fi;