Add silent arg to resolveLibraryPath

This commit is contained in:
Robert
2023-06-13 12:21:38 +01:00
parent 51b94e3fed
commit 790c33c661

View File

@@ -718,6 +718,7 @@ export class CodeQLCliServer implements Disposable {
async resolveLibraryPath(
workspaces: string[],
queryPath: string,
silent = false,
): Promise<QuerySetup> {
const subcommandArgs = [
"--query",
@@ -728,6 +729,7 @@ export class CodeQLCliServer implements Disposable {
["resolve", "library-path"],
subcommandArgs,
"Resolving library paths",
{ silent },
);
}