Explorar el Código

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

Dan Helfman hace 2 años
padre
commit
ae25386336
Se han modificado 1 ficheros con 5 adiciones y 0 borrados
  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