From cc4f21b369666e95eb3ac65cfe22b85342ca34f2 Mon Sep 17 00:00:00 2001 From: tooomm Date: Sun, 14 Jun 2026 00:54:33 +0200 Subject: [PATCH] stricter check for file in app bundle path --- .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 e645d6119..344f27cb7 100755 --- a/.ci/sign_macos_bundle.sh +++ b/.ci/sign_macos_bundle.sh @@ -23,7 +23,7 @@ fi APP_BUNDLE_PATH="$1" # Verify that app bundle exists -if [[ ! -e "$APP_BUNDLE_PATH" ]]; then +if [[ ! -f "$APP_BUNDLE_PATH" ]]; then echo "::error file=$0::App bundle not found at: $APP_BUNDLE_PATH" exit 1 fi