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 2cb2781 commit 2dd0797Copy full SHA for 2dd0797
scripts/release.sh
@@ -13,7 +13,7 @@ if [ "$(git branch --show-current)" != "master" ]; then
13
fi
14
15
# check clean git repo
16
-if [ ! -z "$(git status --short --ahead-behind)" ]; then
+if [ ! -z "$(git status --short --ahead-behind --untracked=no)" ]; then
17
git show
18
echo "need a clean repo"
19
exit 1
@@ -30,4 +30,5 @@ fi
30
git tag "${VERSION}"
31
32
# push the tag
33
+echo "pushing tag to origin..."
34
git push origin "${VERSION}"
0 commit comments