Skip to content

Commit

Permalink
Fix non-empty check
Browse files Browse the repository at this point in the history
  • Loading branch information
Supereg committed Jul 11, 2024
1 parent 1b89f2e commit fd9e541
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/xcodebuild-or-fastlane.yml
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,7 @@ jobs:
ENABLE_TESTING_FLAG=""
fi
if [ -z "${{ inputs.swiftVersion }}"]; then
if [ -n "${{ inputs.swiftVersion }}" ]; then
SWIFT_VERSION_FLAG="-swift-version ${{ inputs.swiftVersion }}"
else
SWIFT_VERSION_FLAG=""
Expand Down

0 comments on commit fd9e541

Please sign in to comment.