Skip to content

Commit

Permalink
log rg failures (#11611)
Browse files Browse the repository at this point in the history
  • Loading branch information
karanjitsingh authored Oct 22, 2019
1 parent 1e41470 commit a59122d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,8 @@ async function generateHtmlReport(summaryFile: string, targetDir: string, pathTo

// Listen for stderr.
let isError = false;
dotnet.on('stderr', () => {
dotnet.on('stderr', (data: Buffer) => {
console.error(data.toString());
isError = true;
});

Expand Down
2 changes: 1 addition & 1 deletion Tasks/PublishCodeCoverageResultsV1/task.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"author": "Microsoft Corporation",
"version": {
"Major": 1,
"Minor": 159,
"Minor": 160,
"Patch": 0
},
"demands": [],
Expand Down
2 changes: 1 addition & 1 deletion Tasks/PublishCodeCoverageResultsV1/task.loc.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"author": "Microsoft Corporation",
"version": {
"Major": 1,
"Minor": 159,
"Minor": 160,
"Patch": 0
},
"demands": [],
Expand Down

0 comments on commit a59122d

Please sign in to comment.