From 527215fa27a9d85044e52230956c9f57afcc7dca Mon Sep 17 00:00:00 2001 From: Garth Minette Date: Tue, 30 Mar 2021 16:10:35 -0700 Subject: [PATCH] Tweak Problem Matcher. --- .github/openscad_docsgen.json | 19 +++++++++++++++---- 1 file changed, 15 insertions(+), 4 deletions(-) diff --git a/.github/openscad_docsgen.json b/.github/openscad_docsgen.json index 813bec6..3520cfd 100644 --- a/.github/openscad_docsgen.json +++ b/.github/openscad_docsgen.json @@ -1,14 +1,13 @@ { "problemMatcher": [ { - "owner": "openscad_docsgen", + "owner": "docsgen_script", "pattern": [ { - "regexp": "^!! (WARNING|ERROR) at ([^:]+):(\\d+): (.*)$", + "regexp": "^!! (WARNING|ERROR) at ([^:]+):(\\d+): Failed OpenSCAD script:$", "severity": 1, "file": 2, - "line": 3, - "message": 4 + "line": 3 }, { "regexp": "^ (.*)$", @@ -16,6 +15,18 @@ "loop": true } ] + }, + { + "owner": "docsgen", + "pattern": [ + { + "regexp": "^!! (WARNING|ERROR) at ([^:]+):(\\d+): (.*[^:])$", + "severity": 1, + "file": 2, + "line": 3, + "message": 4 + } + ] } ] }