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.
1 parent 9f12f1c commit 192b729Copy full SHA for 192b729
1 file changed
bin/run.sh
@@ -163,13 +163,13 @@ main() {
163
164
local any_failed=0
165
test_output=$(run_zig_test) || any_failed=1
166
- if (( ${any_failed} )) && [[ "${test_output}" = *error:* ]]; then
+ if (( any_failed )) && [[ "${test_output}" = *error:* ]]; then
167
emit_compile_error
168
fi
169
170
local tests_json overall
171
tests_json=$(build_tests_json)
172
- if (( ${any_failed} == 0 )); then
+ if (( any_failed == 0 )); then
173
overall="pass"
174
else
175
overall="fail"
0 commit comments