We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
test
check-autogen-diff
1 parent 291b75e commit 094bcd5Copy full SHA for 094bcd5
.github/workflows/main.yml
@@ -20,8 +20,8 @@ jobs:
20
fetch-depth: 2
21
- name: Run auto-generated code checks
22
run: |
23
- [[ $(swift run -q --package-path Utilities WasmKitDevUtils wasmgen | wc -l) == 0 ]] || exit 1
24
- [[ $(swift run --package-path Utilities WasmKitDevUtils vmgen | wc -l) == 0 ]] || exit 1
+ test $(swift run -q --package-path Utilities WasmKitDevUtils wasmgen | wc -l) = "0"
+ test $(swift run -q --package-path Utilities WasmKitDevUtils vmgen | wc -l) = "0"
25
26
build-macos:
27
strategy:
0 commit comments