mirror of
https://github.com/actions-rust-lang/setup-rust-toolchain.git
synced 2024-12-26 17:00:34 +01:00
Update rust.json
The regex for the problem matcher is invalid, since the `-` creates a range. But the range is invalid, since it cannot start with `\s`.
This commit is contained in:
parent
64fef3b541
commit
3b557ff24c
1 changed files with 1 additions and 1 deletions
|
@ -22,7 +22,7 @@
|
||||||
"code": 3
|
"code": 3
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"regexp": "^([\\s->=]*(.*):(\\d*):(\\d*)|.*)$",
|
"regexp": "^([\\s\\->=]*(.*):(\\d*):(\\d*)|.*)$",
|
||||||
"file": 2,
|
"file": 2,
|
||||||
"line": 3,
|
"line": 3,
|
||||||
"column": 4
|
"column": 4
|
||||||
|
|
Loading…
Reference in a new issue