We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa32f30 commit d7d9f14Copy full SHA for d7d9f14
release_tools/version_bump.sh
@@ -51,7 +51,10 @@ if ! git checkout -b "version-$NEW_VERSION_NUMBER" ; then
51
fi
52
53
# Commit the version number change.
54
-git commit -a -m "Version $NEW_VERSION_NUMBER"
+if ! git commit -a -m "Version $NEW_VERSION_NUMBER" ; then
55
+ echo "git commit failed"
56
+ exit 1
57
+fi
58
59
echo
60
echo "I have updated the version number locally."
0 commit comments