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 authored and jfmengels committed Aug 29, 2024
1 parent 1aba7f8 commit 20bd482
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

1 comment on commit 20bd482

@lishaduck
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This hit rate limits, but it should be fine.

Please sign in to comment.