diff options
author | hackademix | 2018-07-07 03:02:40 +0200 |
---|---|---|
committer | hackademix | 2018-07-07 03:02:40 +0200 |
commit | 8b183f9c7061245048c61af69aa76607388ddc2e (patch) | |
tree | 06e0e83ea691a31bb6a790c4cbbdd65c731ae6bf | |
parent | 0ad5f95eb479f8450058333541631640fc8ee4bb (diff) | |
download | noscript-8b183f9c7061245048c61af69aa76607388ddc2e.tar.gz noscript-8b183f9c7061245048c61af69aa76607388ddc2e.tar.xz noscript-8b183f9c7061245048c61af69aa76607388ddc2e.zip |
Added "tag" command to build.sh.
-rw-r--r-- | build.sh | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -6,6 +6,11 @@ MANIFEST_IN="$SRC/manifest.json" MANIFEST_OUT="$BUILD/manifest.json" VER=$(grep '"version":' "$SRC/manifest.json" | sed -re 's/.*": "(.*?)".*/\1/') +if [ "$1" == "tag" ]; then + echo "Tagging at $VER" + git tag -a "$VER" && git push origin "$VER" + exit 0 +fi XPI_DIR="$BASE/xpi" XPI="$XPI_DIR/noscript-$VER" LIB="$SRC/lib" |