summaryrefslogtreecommitdiff
path: root/build.sh
diff options
context:
space:
mode:
authorhackademix2018-07-03 17:36:36 +0200
committerhackademix2018-07-03 17:36:36 +0200
commit849fd0c7a93e78a588c426706ecbd5bcaefa4248 (patch)
tree586a8ca837bd837d779d728ae4baa2e0a30f9551 /build.sh
parente2a8c5768fb40cb8515eee2b6ff20bc18dbd8fc2 (diff)
downloadnoscript-849fd0c7a93e78a588c426706ecbd5bcaefa4248.tar.gz
noscript-849fd0c7a93e78a588c426706ecbd5bcaefa4248.tar.xz
noscript-849fd0c7a93e78a588c426706ecbd5bcaefa4248.zip
Minor build script and code tree cleanup, including license info inside the XPI.
Diffstat (limited to 'build.sh')
-rw-r--r--build.sh11
1 files changed, 5 insertions, 6 deletions
diff --git a/build.sh b/build.sh
index 0159a17..ea1c8da 100644
--- a/build.sh
+++ b/build.sh
@@ -15,11 +15,11 @@ if ! [ $(date -r "$LIB/tld.js" +'%Y%m%d') -ge $(date +'%Y%m%d') ] && "$TLD/gene
cp -u "$TLD/tld.js" $LIB
fi
-./html5_events.pl
-
-rm -rf $BUILD $XPI
-cp -pR $SRC $BUILD
+./html5_events/html5_events.pl
+rm -rf "$BUILD" "$XPI"
+cp -pR "$SRC" "$BUILD"
+cp -p LICENSE.txt GPL.txt "$BUILD"/
if [[ $VER == *rc* ]]; then
sed -re 's/^(\s+)"strict_min_version":.*$/\1"update_url": "https:\/\/secure.informaction.com\/update\/?v='$VER'",\n\0/' \
@@ -43,7 +43,7 @@ else
fi
echo "Creating $XPI.xpi..."
-mkdir -p $XPI_DIR
+mkdir -p "$XPI_DIR"
"$BUILD_CMD" $BUILD_OPTS --source-dir=$(cygpath -w $BUILD) --artifacts-dir=$(cygpath -w $XPI_DIR) --ignore-files=test/XSS_test.js
SIGNED="$XPI_DIR/noscript_security_suite-$VER-an+fx.xpi"
@@ -56,5 +56,4 @@ else
exit 3
fi
echo "Created $XPI.xpi"
-
rm -rf "$BUILD"