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
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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