We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8aabc81 commit 019cf8bCopy full SHA for 019cf8b
build.sh
@@ -24,9 +24,12 @@ VER=$(grep '"version":' "$MANIFEST_IN" | sed -re 's/.*": "(.*?)".*/\1/')
24
if [ "$1" == "tag" ]; then
25
# ensure nscl is up-to-date git-wise
26
./nscl_gitsync.sh
27
-
+ OPTS=""
28
+ if [ "$2" != "quiet" ]; then
29
+ OPTS="-e"
30
+ fi
31
echo "Tagging at $VER"
- git tag -a "$VER" -e -m"$(gitcl 2>/dev/null)"
32
+ git tag -a "$VER" $OPTS -m"$(gitcl 2>/dev/null)"
33
git push && git push origin "$VER"
34
exit 0
35
fi
@@ -202,7 +205,7 @@ fi
202
205
mv "$BUILD" "$CHROMIUM_UNPACKED"
203
206
204
207
if [ "$SIGNED" ]; then
- "$0" tag
208
+ "$0" tag quiet
209
nscl
210
../../we-publish "$XPI.xpi"
211
0 commit comments