[feat] Make regex eat trailing '/' in group 1

This commit is contained in:
olemorud
2023-03-15 10:56:44 +01:00
parent dd72791927
commit ae82e15273
4 changed files with 7 additions and 7 deletions

View File

@@ -4,7 +4,7 @@
"owner": "gcc-problem-matcher",
"pattern": [
{
"regexp": "^(${{ BASE }})(.*?):(\\d+):(\\d*):?\\s+(?:fatal\\s+)?(warning|error):\\s+(.*)$",
"regexp": "^(${{ BASE }}\\/?)(.*?):(\\d+):(\\d*):?\\s+(?:fatal\\s+)?(warning|error):\\s+(.*)$",
"fromPath": 1,
"file": 2,
"line": 3,

4
dist/index.js vendored
View File

@@ -2848,7 +2848,7 @@ const core = __nccwpck_require__(127);
// escapeRegExp :: string => string
// escape all characters with special meanings in regexp
const escapeRegExp = (s) =>
s.replace(/[/\-^$*+?.()|[\]{}]/g, "\\$&");
s.replace(/[/\-^$*+?.()|[\]{}]/g, "\\\\$&");
// variable :: string => RegExp
// create regex to match ${{ key }}
@@ -2859,7 +2859,7 @@ const variable = (key) =>
const templatePath = __nccwpck_require__.ab + "gcc_matcher.jsontemplate";
// matcherPath :: string
const matcherPath = __nccwpck_require__.ab + "gcc_matcher.json";
const outputPath = __nccwpck_require__.ab + "gcc_matcher.json";
// rootdir :: string
const rootdir = core.getInput('build-directory', {required: false});