diff options
Diffstat (limited to 'build.sh')
-rw-r--r-- | build.sh | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -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" |