JavaScript error: Cannot read properties of undefined (reading 'endsWith') (https://git.liteyuki.icu/assets/js/index.js?v=1.23.3 @ 15:151791). Open browser console to see more details.
2021-06-16 18:33:33 +02:00

12 lines
162 B
Bash
Executable File

#!/usr/bin/env bash
export RUST_BACKTRACE=1
while true
do
cargo test qc_ --release -- --nocapture
if [[ x$? != x0 ]] ; then
exit $?
fi
done