Fix syntax error in conditional statement

This commit is contained in:
cerXXXX 2026-04-13 14:25:53 +03:00 committed by GitHub
parent d7dac20d5f
commit 76a8700a4a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -51,7 +51,7 @@ jobs:
- name: Build Xcode archive (Unsigned)
run: |
# Select workspace or project based on the environment variable
if[ "$USE_WORKSPACE" = "true" ]; then
if [ "$USE_WORKSPACE" = "true" ]; then
BUILD_TARGET="-workspace $PROJECT_NAME.xcworkspace"
else
BUILD_TARGET="-project $PROJECT_NAME.xcodeproj"