~octaspire/ox-base64-html

9847cb9fa6c34abebd8320ef9d973d45a7ddeb14 — octaspire 2 years ago 4c4a64f
Fix test to fail only on error(s)
1 files changed, 1 insertions(+), 2 deletions(-)

M .builds/debian_stretch.yml
M .builds/debian_stretch.yml => .builds/debian_stretch.yml +1 -2
@@ 26,5 26,4 @@ tasks:
    - show-export-result: |
        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
        tidy -eq "$HOME/www/example.html" || if [ $? -eq 2 ]; then echo 'ERRORS' && false; else echo 'OK' && true; fi