1
0
Fork 0
mirror of https://github.com/ludeeus/action-shellcheck.git synced 2024-08-16 10:09:53 +02:00

Updated matchers to account for "./" file prefixes (#42)

Co-authored-by: Joakim Sørensen <hi@ludeeus.dev>
This commit is contained in:
Phred Lane 2021-11-14 03:10:45 -06:00 committed by GitHub
parent 7606914ded
commit a1080136d9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -4,7 +4,7 @@
"owner": "shellcheck-gcc",
"pattern": [
{
"regexp": "^(.+):(\\d+):(\\d+):\\s(note|warning|error):\\s(.*)\\s\\[(SC\\d+)\\]$",
"regexp": "^\\.\\/(.+):(\\d+):(\\d+):\\s(note|warning|error):\\s(.*)\\s\\[(SC\\d+)\\]$",
"file": 1,
"line": 2,
"column": 3,

View file

@ -4,7 +4,7 @@
"owner": "shellcheck-tty",
"pattern": [
{
"regexp": "^In\\s(.+)\\sline\\s(\\d+):$",
"regexp": "^In\\s\\.\\/(.+)\\sline\\s(\\d+):$",
"file": 1,
"line": 2
},