mirror of
https://github.com/github/codeql-action.git
synced 2026-04-17 12:33:16 +00:00
Decode CodeQL stdout as UTF-8
This commit is contained in:
@@ -717,7 +717,7 @@ function getCodeQLForCmd(cmd: string): CodeQL {
|
||||
await new toolrunner.ToolRunner(cmd, args, {
|
||||
listeners: {
|
||||
stdout: (data: Buffer) => {
|
||||
output += data.toString();
|
||||
output += data.toString("utf8");
|
||||
},
|
||||
},
|
||||
}).exec();
|
||||
|
||||
Reference in New Issue
Block a user