From 322a5d32078c3d5307fc04b8b461587566c1d4f8 Mon Sep 17 00:00:00 2001 From: gorhill Date: Thu, 9 Apr 2015 07:15:14 -0400 Subject: [PATCH] this fixes https://github.com/chrisaljoudi/uBlock/issues/1219 for Firefox --- tools/make-firefox.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tools/make-firefox.sh b/tools/make-firefox.sh index 221ceff..85beb60 100755 --- a/tools/make-firefox.sh +++ b/tools/make-firefox.sh @@ -2,9 +2,9 @@ # # This script assumes a linux environment -echo "*** uBlock.firefox: Copying files" +echo "*** uBlock0.firefox: Copying files" -DES=dist/build/uBlock.firefox +DES=dist/build/uBlock0.firefox rm -rf $DES mkdir -p $DES @@ -26,14 +26,14 @@ cp platform/firefox/install.rdf $DES/ cp platform/firefox/*.xul $DES/ cp LICENSE.txt $DES/ -echo "*** uBlock.firefox: Generating meta..." +echo "*** uBlock0.firefox: Generating meta..." python tools/make-firefox-meta.py $DES/ if [ "$1" = all ]; then - echo "*** uBlock.firefox: Creating package..." + echo "*** uBlock0.firefox: Creating package..." pushd $DES/ - zip ../uBlock.firefox.xpi -qr * + zip ../uBlock0.firefox.xpi -qr * popd fi -echo "*** uBlock.firefox: Package done." +echo "*** uBlock0.firefox: Package done."