From 2276a983c589ee1a496c9c03e2acefe96058abbf Mon Sep 17 00:00:00 2001 From: Akilan R <38667273+akilan07@users.noreply.github.com> Date: Tue, 8 Nov 2022 08:58:53 +0530 Subject: [PATCH] #403 Skip upx compression for all mac binaries --- compress-binary.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compress-binary.sh b/compress-binary.sh index 288a377b..5fdc8553 100755 --- a/compress-binary.sh +++ b/compress-binary.sh @@ -6,7 +6,7 @@ pushd dist || exit binary=$1 -if [[ $binary == *"arm"* ]]; then +if [[ $binary == *"darwin"* || $binary == *"arm"* ]]; then exit 0 fi