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 d6d7b54 commit e10fcd1Copy full SHA for e10fcd1
tools/release.sh
@@ -23,10 +23,11 @@ echo
23
24
if [ "$VERSION" != "$TAG" ]; then
25
if [ "$1" != "-f" ]; then
26
+ VERSION_LOWER=`echo "$VERSION" | sed -e "s/[A-Z]/\L&/g"`
27
echo "Mismatch! Use '-f' to ignore. Will use Makefile version # ($VERSION)"
28
echo "Or, if you're ready, run:"
- echo " git tag $VERSION"
29
- echo " git push origin $VERSION"
+ echo " git tag $VERSION_LOWER"
30
+ echo " git push origin $VERSION_LOWER"
31
echo
32
echo "Here is the current 'git status':"
33
echo "------------------------------------------------------------------------"
0 commit comments