Added "tag" command to build.sh.

This commit is contained in:
hackademix 2018-07-07 03:02:40 +02:00
parent 0ad5f95eb4
commit 8b183f9c70
1 changed files with 5 additions and 0 deletions

View File

@ -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"