Skip to content

Commit bfcb70b

Browse files
authored
Merge pull request microsoft#184074 from microsoft/merogge/group
fix task regex
2 parents adbcc3d + 5a463cd commit bfcb70b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vs/workbench/contrib/tasks/common/problemMatcher.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1284,7 +1284,7 @@ class ProblemPatternRegistryImpl implements IProblemPatternRegistry {
12841284

12851285
private fillDefaults(): void {
12861286
this.add('msCompile', {
1287-
regexp: /^(?:\s*\d+>)?(\S.*)\((\d+|\d+,\d+|\d+,\d+,\d+,\d+)\)\s*:\s+((fatal +)?error|warning|info)\s+(\w+\d+)\s*:\s*(.*)$/,
1287+
regexp: /^(?:\s*\d+>)?(\S.*)\((\d+|\d+,\d+|\d+,\d+,\d+,\d+)\)\s*:\s+((?:fatal +)?error|warning|info)\s+(\w+\d+)\s*:\s*(.*)$/,
12881288
kind: ProblemLocationKind.Location,
12891289
file: 1,
12901290
location: 2,

0 commit comments

Comments
 (0)