Use runTool for mergeResults
This commit is contained in:
parent
6ac57535de
commit
70aa50b057
3 changed files with 3 additions and 3 deletions
2
lib/codeql.js
generated
2
lib/codeql.js
generated
|
|
@ -679,7 +679,7 @@ async function getCodeQLForCmd(cmd, checkVersion) {
|
||||||
if (mergeRunsFromEqualCategory) {
|
if (mergeRunsFromEqualCategory) {
|
||||||
args.push("--sarif-merge-runs-from-equal-category");
|
args.push("--sarif-merge-runs-from-equal-category");
|
||||||
}
|
}
|
||||||
await new toolrunner.ToolRunner(cmd, args).exec();
|
await runTool(cmd, args);
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
// To ensure that status reports include the CodeQL CLI version wherever
|
// To ensure that status reports include the CodeQL CLI version wherever
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -1113,7 +1113,7 @@ export async function getCodeQLForCmd(
|
||||||
args.push("--sarif-merge-runs-from-equal-category");
|
args.push("--sarif-merge-runs-from-equal-category");
|
||||||
}
|
}
|
||||||
|
|
||||||
await new toolrunner.ToolRunner(cmd, args).exec();
|
await runTool(cmd, args);
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
// To ensure that status reports include the CodeQL CLI version wherever
|
// To ensure that status reports include the CodeQL CLI version wherever
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue