diff options
-rwxr-xr-x | build.sh | 2 | ||||
-rwxr-xr-x | lib_build.sh | 5 |
2 files changed, 2 insertions, 5 deletions
@@ -65,7 +65,7 @@ if [ $MAKEZIP = 1 ]; then if [ "x$OUTPUT" = x ]; then case $BROWSER in - chromium) OUTPUT=build.crx;; + chromium) OUTPUT=build.zip;; mozilla) OUTPUT=build.xpi;; esac fi diff --git a/lib_build.sh b/lib_build.sh index 8b2c046..0fa656c 100755 --- a/lib_build.sh +++ b/lib_build.sh @@ -293,8 +293,5 @@ EOF make_zip() ( cd "$BUILDDIR" - case $BROWSER in - mozilla) ${HAKETILO_ZIP:-zip -r} build.zip *;; - chromium) exit 92;; # Still to do - esac + ${HAKETILO_ZIP:-zip -r} build.zip *;; ) |