From 9331ff504fe65778e41a24e9d5eb583f2bf11c68 Mon Sep 17 00:00:00 2001 From: Jean Pierre Cimalando Date: Sun, 13 Dec 2020 13:11:51 +0100 Subject: [PATCH] Disable fileicon, rejected by code-signing --- scripts/appveyor/after_build.sh | 11 +++++++---- scripts/appveyor/install.sh | 2 +- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/scripts/appveyor/after_build.sh b/scripts/appveyor/after_build.sh index cb59f11d..fd686383 100755 --- a/scripts/appveyor/after_build.sh +++ b/scripts/appveyor/after_build.sh @@ -4,10 +4,13 @@ set -ex make DESTDIR=${PWD}/${INSTALL_DIR} install # Set bundle icons -bundle_icns=/System/Library/CoreServices/CoreTypes.bundle/Contents/Resources/KEXT.icns -for bundle in sfizz.vst3 sfizz.component sfizz.lv2; do - fileicon set "${INSTALL_DIR}"/"$bundle" "$bundle_icns" -done +# Note: disabled, rejected by the code-sign step +if false; then + bundle_icns=/System/Library/CoreServices/CoreTypes.bundle/Contents/Resources/KEXT.icns + for bundle in sfizz.vst3 sfizz.component sfizz.lv2; do + fileicon set "${INSTALL_DIR}"/"$bundle" "$bundle_icns" + done +fi # Perform code-signing if test -z "${CODESIGN_PASSWORD}"; then diff --git a/scripts/appveyor/install.sh b/scripts/appveyor/install.sh index 2755a0e3..1372da19 100644 --- a/scripts/appveyor/install.sh +++ b/scripts/appveyor/install.sh @@ -40,7 +40,7 @@ fi set -x -brew install libsndfile dylibbundler fileicon +brew install libsndfile dylibbundler cd ~; npm install appdmg; cd - ~/node_modules/appdmg/bin/appdmg.js --version