From: Jérémie Astor Date: Mon, 14 Sep 2020 10:14:08 +0000 (+0200) Subject: :wrench: Fix OS tests? X-Git-Tag: nightly~1318 X-Git-Url: http://10.10.0.4:5575/?a=commitdiff_plain;h=d4a82b36ec429cd0862d78c4d29276686990c447;p=gwion.git :wrench: Fix OS tests? --- diff --git a/scripts/test.sh b/scripts/test.sh index 7df033bb..af917560 100644 --- a/scripts/test.sh +++ b/scripts/test.sh @@ -51,7 +51,7 @@ assert_exclude() { } read_test() { - [ -f "$1" ] && return # needed for macOS, modulo does not seem to work + [ -f "$1" ] || return # needed for macOS, modulo does not seem to work while read -r line do if [ "$line" = "#*" ]