Skip to content

Commit 192b729

Browse files
SC2004 (style)
1 parent 9f12f1c commit 192b729

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

bin/run.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -163,13 +163,13 @@ main() {
163163

164164
local any_failed=0
165165
test_output=$(run_zig_test) || any_failed=1
166-
if (( ${any_failed} )) && [[ "${test_output}" = *error:* ]]; then
166+
if (( any_failed )) && [[ "${test_output}" = *error:* ]]; then
167167
emit_compile_error
168168
fi
169169

170170
local tests_json overall
171171
tests_json=$(build_tests_json)
172-
if (( ${any_failed} == 0 )); then
172+
if (( any_failed == 0 )); then
173173
overall="pass"
174174
else
175175
overall="fail"

0 commit comments

Comments
 (0)