mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-06-14 01:54:47 -07:00
stricter check for file in app bundle path
This commit is contained in:
parent
3978c7e642
commit
cc4f21b369
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue