Browse Source

Update release script to abort if there are local changes. Prevents accidentally tagging a .dev0 changeset for release.

Dan Helfman 2 years ago
parent
commit
ae25386336
1 changed files with 5 additions and 0 deletions
  1. 5 0
      scripts/release

+ 5 - 0
scripts/release

@@ -21,6 +21,11 @@ if [[ $version =~ .*dev* ]]; then
     exit 1
 fi
 
+if ! git diff-index --quiet HEAD -- ; then
+    echo "Refusing to release with local changes:"
+    git status --porcelain
+fi
+
 git tag $version
 git push origin $version
 git push github $version