databaseRunQueries(): accept a list of flags
This refactoring commit changes databaseRunQueries() to accept a list of flags instead of separate memory and threads flags.
This commit is contained in:
parent
e00cd12e3e
commit
3095a09bb0
6 changed files with 13 additions and 17 deletions
5
lib/codeql.js
generated
5
lib/codeql.js
generated
|
|
@ -472,12 +472,11 @@ async function getCodeQLForCmd(cmd, checkVersion) {
|
|||
throw new Error(`Unexpected output from codeql resolve queries: ${e}`);
|
||||
}
|
||||
},
|
||||
async databaseRunQueries(databasePath, extraSearchPath, querySuitePath, memoryFlag, threadsFlag) {
|
||||
async databaseRunQueries(databasePath, extraSearchPath, querySuitePath, flags) {
|
||||
const codeqlArgs = [
|
||||
"database",
|
||||
"run-queries",
|
||||
memoryFlag,
|
||||
threadsFlag,
|
||||
...flags,
|
||||
databasePath,
|
||||
"--min-disk-free=1024",
|
||||
"-v",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue