Skip to content

Commit

Permalink
fix: continue even if the command failed
Browse files Browse the repository at this point in the history
  • Loading branch information
lishaduck committed Aug 25, 2024
1 parent 443bddf commit 8e86e5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
Expand Down

0 comments on commit 8e86e5f

Please sign in to comment.