Commit 2596974c by Leonard Gram Committed by GitHub

Build: fixes missing shebang in release tagging script. (#17894)

parent 3d848d0f
#/bin/bash
#!/usr/bin/env bash
# abort if we get any error
set -e
......@@ -33,8 +33,9 @@ echo "press [y] to push the tags"
read -n 1 confirm
if [ "${confirm}" == "y" ]; then
if [ "${confirm}" == "y" ]; then
git push origin "${_branch}" --tags
else
else
git tag -d "${_tag}"
echo "Abort! "
fi
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment