Make test to fail only on error(s)
1 files changed, 1 insertions(+), 0 deletions(-) M .builds/debian_stretch.yml
M .builds/debian_stretch.yml => .builds/debian_stretch.yml +1 -0
@@ 27,3 27,4 @@ tasks: cat "$HOME/www/example.html" - check-export-result: | tidy -eq "$HOME/www/example.html" + if [ $? -eq 2 ]; then echo 'ERRORS' && false; else echo 'OK' && true; fi