Skip to content

Commit 2dd0797

Browse files
committed
another release fix
1 parent 2cb2781 commit 2dd0797

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

scripts/release.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ if [ "$(git branch --show-current)" != "master" ]; then
1313
fi
1414

1515
# check clean git repo
16-
if [ ! -z "$(git status --short --ahead-behind)" ]; then
16+
if [ ! -z "$(git status --short --ahead-behind --untracked=no)" ]; then
1717
git show
1818
echo "need a clean repo"
1919
exit 1
@@ -30,4 +30,5 @@ fi
3030
git tag "${VERSION}"
3131

3232
# push the tag
33+
echo "pushing tag to origin..."
3334
git push origin "${VERSION}"

0 commit comments

Comments
 (0)