From 20bd482627ca2211322167d43b718a81e2a02a16 Mon Sep 17 00:00:00 2001 From: Eli <88557639+lishaduck@users.noreply.github.com> Date: Sun, 25 Aug 2024 16:20:15 -0500 Subject: [PATCH] fix: continue even if the command failed --- test/run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/run.sh b/test/run.sh index c44010ba7..5696e079b 100755 --- a/test/run.sh +++ b/test/run.sh @@ -62,7 +62,7 @@ runAndRecord() { local ARGS=$3 local FILE=$4 echo -e "\x1B[33m- $TITLE\x1B[0m: \x1B[34m elm-review --FOR-TESTS $ARGS\x1B[0m" - eval "ELM_HOME=$ELM_HOME $LOCAL_COMMAND$AUTH --FOR-TESTS $ARGS" 2>&1 \ + (eval "ELM_HOME=$ELM_HOME $LOCAL_COMMAND$AUTH --FOR-TESTS $ARGS" || true) 2>&1 \ | replace_script \ > "$SNAPSHOTS/$FILE" }