Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Strip out more ANSI color codes (#297)
This should issues like https://github.com/coq/coq/pull/18446/checks?check_run_id=20043646334 not finding `Error` since the introduction of colors in coq/coq#18338. ANSI color codes sometimes include three numeric components. If we want to be more precise, we could use `([0-9]+;?){1,3}` or even `([0-9]+;){0,2}[0-9]+`, but I think this might be overkill, and there's not too much harm in using the simpler expression.
- Loading branch information