summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--build.sh8
1 files changed, 7 insertions, 1 deletions
diff --git a/build.sh b/build.sh
index 2ddd6a2..de5ea0c 100644
--- a/build.sh
+++ b/build.sh
@@ -5,12 +5,18 @@ BUILD="$BASE/build"
MANIFEST_IN="$SRC/manifest.json"
MANIFEST_OUT="$BUILD/manifest.json"
-VER=$(grep '"version":' "$SRC/manifest.json" | sed -re 's/.*": "(.*?)".*/\1/')
+VER=$(grep '"version":' "$MANIFEST_IN" | sed -re 's/.*": "(.*?)".*/\1/')
if [ "$1" == "tag" ]; then
echo "Tagging at $VER"
git tag -a "$VER" && git push origin "$VER"
exit 0
fi
+if [ "$1" == "bump" ]; then
+ echo "Bumping to $VER"
+ git add "$MANIFEST_IN"
+ git commit -m "Version bump: $VER."
+ exit 0
+fi
XPI_DIR="$BASE/xpi"
XPI="$XPI_DIR/noscript-$VER"
LIB="$SRC/lib"