From 7e6acb9200431eb6c71c039353061d0d29e888d4 Mon Sep 17 00:00:00 2001 From: gorhill Date: Tue, 13 Jan 2015 08:14:00 -0500 Subject: [PATCH] fix script --- tools/make-firefox.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tools/make-firefox.sh b/tools/make-firefox.sh index 739004f45..bebca6f23 100755 --- a/tools/make-firefox.sh +++ b/tools/make-firefox.sh @@ -29,6 +29,8 @@ echo "*** uBlock_xpi: Generating meta..." python tools/make-firefox-meta.py $DES/ echo "*** uBlock_xpi: Creating package..." -zip dist/build/uBlock.firefox.xpi -qr $DES/* +pushd $DES/ +zip ../uBlock.firefox.xpi -qr * +popd echo "*** uBlock_xpi: Package done."