stricter check for file in app bundle path

This commit is contained in:
tooomm
2026-06-14 00:54:33 +02:00
committed by GitHub
parent 3978c7e642
commit cc4f21b369

View File

@@ -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