diff options
author | gorhill <rhill@raymondhill.net> | 2015-01-13 08:14:00 -0500 |
---|---|---|
committer | gorhill <rhill@raymondhill.net> | 2015-01-13 08:14:00 -0500 |
commit | 7e6acb9200431eb6c71c039353061d0d29e888d4 (patch) | |
tree | f0fc5f3a8a0513e01676f3d68dfb7908a46d4bcc | |
parent | da0a2cd206a2316ff02f8133ec7777c6291e3bb0 (diff) | |
download | uBlock-7e6acb9200431eb6c71c039353061d0d29e888d4.zip uBlock-7e6acb9200431eb6c71c039353061d0d29e888d4.tar.gz uBlock-7e6acb9200431eb6c71c039353061d0d29e888d4.tar.bz2 |
fix script
-rwxr-xr-x | tools/make-firefox.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/make-firefox.sh b/tools/make-firefox.sh index 739004f..bebca6f 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." |