Skip to content

Commit 4fb2625

Browse files
committed
Re-enable signing logging.
1 parent e716637 commit 4fb2625

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

build.sh

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,13 @@ fix_manifest() {
138138
}
139139

140140
build() {
141+
if [[ $1 == "zip" ]]; then
142+
shift
143+
elif ! [[ $BUILD_CMD == *we-sign ]]; then
144+
build zip "$1" | \
145+
grep 'ready: .*\.zip' | sed -re 's/.* ready: //'
146+
return
147+
fi
141148
UNPACKED_DIR="$UNPACKED_BASE/${1:-out}"
142149
rm -rf "$UNPACKED_DIR"
143150
cp -rp "$BUILD" "$UNPACKED_DIR" && echo >&2 "Copied $BUILD to $UNPACKED_DIR"
@@ -160,8 +167,7 @@ build() {
160167
"$BUILD_CMD" $BUILD_OPTS \
161168
--source-dir="$WEBEXT_IN" \
162169
--artifacts-dir="$WEBEXT_OUT" \
163-
$COMMON_BUILD_OPTS | \
164-
grep 'ready: .*\.zip' | sed -re 's/.* ready: //'
170+
$COMMON_BUILD_OPTS
165171
}
166172

167173
fix_manifest mv2firefox

0 commit comments

Comments
 (0)