From c9df161eb600913ab4bbda9c5b3350ca6bbe3ab1 Mon Sep 17 00:00:00 2001 From: Thomas Buckley-Houston Date: Wed, 13 Jun 2018 19:37:26 +0800 Subject: [PATCH] Don't UPX compress OSX binaries The current versions of UPX cause an instant crash of the Browsh binary on OSX :/ Version 1.0.13 --- interfacer/contrib/upx_compress_binary.sh | 2 +- webext/manifest.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/interfacer/contrib/upx_compress_binary.sh b/interfacer/contrib/upx_compress_binary.sh index c860510..f68a661 100755 --- a/interfacer/contrib/upx_compress_binary.sh +++ b/interfacer/contrib/upx_compress_binary.sh @@ -3,5 +3,5 @@ set -ex shopt -s extglob pushd dist -upx !(freebsd*)/* +upx !(@(freebsd*|darwin*))/* popd diff --git a/webext/manifest.json b/webext/manifest.json index 752b877..698d8c3 100644 --- a/webext/manifest.json +++ b/webext/manifest.json @@ -1,7 +1,7 @@ { "manifest_version": 2, "name": "Browsh", - "version": "1.0.12", + "version": "1.0.13", "description": "Renders the browser as realtime, interactive, TTY-compatible text",