From ef172bcf811976247feb96236f36140f46be1c25 Mon Sep 17 00:00:00 2001 From: gorhill Date: Sun, 2 Apr 2017 23:22:11 -0400 Subject: [PATCH] use xpi instead of zip for webext --- .travis.yml | 2 +- tools/make-webext.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 6de2036..d753255 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,7 +3,7 @@ env: matrix: - BROWSER=chromium EXT=zip - BROWSER=firefox EXT=xpi - - BROWSER=webext EXT=zip + - BROWSER=webext EXT=xpi script: ./tools/make-${BROWSER}.sh all deploy: provider: releases diff --git a/tools/make-webext.sh b/tools/make-webext.sh index 5bbf730..2c67d70 100755 --- a/tools/make-webext.sh +++ b/tools/make-webext.sh @@ -31,7 +31,7 @@ python tools/make-webext-meta.py $DES/ if [ "$1" = all ]; then echo "*** uMatrix.webext: Creating package..." pushd $DES > /dev/null - zip ../$(basename $DES).zip -qr * + zip ../$(basename $DES).xpi -qr * popd > /dev/null fi