Skip to content

Commit 2eb42fe

Browse files
committed
Fix syntax for shellcheck
1 parent 5f4d9bf commit 2eb42fe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/scripts/android/android-emulator-tests.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ fi
122122

123123
# warn about macros in packages, as per
124124
# https://github.com/swiftlang/github-workflows/pull/215#discussion_r2621335245
125-
grep -q '\.macro(' Package.swift && log "WARNING: Packages with macros are known to have issues with cross-compilation: https://github.com/swiftlang/swift-package-manager/issues/8094" || true
125+
! grep -lq '\.macro(' Package.swift || log "WARNING: Packages with macros are known to have issues with cross-compilation: https://github.com/swiftlang/swift-package-manager/issues/8094"
126126

127127
log "Copy Swift test package to emulator"
128128

0 commit comments

Comments
 (0)