Monorepo for Tangled

spindle: fix skipped tests not actually being skipped master

`if` effectively neuters `set -e`: ``` $ bash -c 'set -ex; f() { false; echo 123; }; if f; then echo 456; fi' + f + false + echo 123 123 + echo 456 456 ``` so the test keeps on running. Instead, we can rely on `exit` (which is not going to break as easily) + a subshell to make sure we actually catch error codes. (This might also cause other forms of test "failure" to not get detected, as well.)


Author re:fi.64 Committer Tangled Date Commit eca1e96e Parent 6b5b544c Change ID knnpknso
+2 -2
1 changed file