Skip to content

Commit 9a31a51

Browse files
committed
Propogate instead of swallowing error
Failing commands were being ignored in CI. This is not good.
1 parent 149d686 commit 9a31a51

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

contrib/test.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ fi
5252

5353
# Webassembly stuff
5454
if [ "$DO_WASM" = true ]; then
55-
clang --version &&
56-
wasm-pack build &&
55+
clang --version
56+
wasm-pack build
5757
wasm-pack test --node;
5858
fi
5959

0 commit comments

Comments
 (0)