From a5fe1ebd0af4f2f1d629317c2c0beedf1667f753 Mon Sep 17 00:00:00 2001 From: tooomm Date: Sat, 6 Jun 2026 20:36:49 +0200 Subject: [PATCH] fix --- .ci/sign_macos_bundle.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ci/sign_macos_bundle.sh b/.ci/sign_macos_bundle.sh index b7b12a701..dc928bbb7 100755 --- a/.ci/sign_macos_bundle.sh +++ b/.ci/sign_macos_bundle.sh @@ -23,7 +23,7 @@ fi APP_BUNDLE_PATH="$1" # Verify that the app bundle exists -if [[ ! -d "$APP_BUNDLE_PATH" ]]; then +if [[ ! -e "$APP_BUNDLE_PATH" ]]; then echo "::error file=$0::App bundle not found at: $APP_BUNDLE_PATH" exit 1 fi