From a0343e16c24b10560791e06b5bb45c50b3de6c70 Mon Sep 17 00:00:00 2001 From: hackademix Date: Wed, 9 Oct 2019 12:46:38 +0200 Subject: [PATCH] Fixed typo causing Chromium builds not to be created in the XPI directory. --- build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sh b/build.sh index 3782b2a..4558be8 100644 --- a/build.sh +++ b/build.sh @@ -114,7 +114,7 @@ else WEBEXT_OUT="$XPI_DIR" fi -COMMON_BUILD_OPTS="--ignore-files=test/XSS_test.js --overwrite-dest" +COMMON_BUILD_OPTS="--ignore-files=test/XSS_test.js --overwrite-dest" "$BUILD_CMD" $BUILD_OPTS --source-dir="$WEBEXT_IN" --artifacts-dir="$WEBEXT_OUT" $COMMON_BUILD_OPTS SIGNED="$XPI_DIR/noscript_security_suite-$VER-an+fx.xpi" @@ -134,4 +134,4 @@ ln -fs $XPI.xpi "$BASE/latest.xpi" rm -rf "$CHROMIUM" strip_rc_ver "$MANIFEST_OUT" mv "$BUILD" "$CHROMIUM" -web-ext build --source-dir="$CHROMIUM" --artifacts-dir="$WEBEXTOUT" --ignore-files=test/XSS_test.js $COMMON_BUILD_OPTS +web-ext build --source-dir="$CHROMIUM" --artifacts-dir="$WEBEXT_OUT" --ignore-files=test/XSS_test.js $COMMON_BUILD_OPTS