We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c6ee20b + ef8aa14 commit 1b81e86Copy full SHA for 1b81e86
1 file changed
extensions/ql-vscode/src/cli.ts
@@ -1227,10 +1227,12 @@ export class CodeQLCliServer implements Disposable {
1227
async packAdd(dir: string, queryLanguage: QueryLanguage) {
1228
const args = ["--dir", dir];
1229
args.push(`codeql/${queryLanguage}-all`);
1230
+ const addFormat = false;
1231
return this.runJsonCodeQlCliCommandWithAuthentication(
1232
["pack", "add"],
1233
args,
1234
`Adding and installing ${queryLanguage} pack dependency.`,
1235
+ addFormat,
1236
);
1237
}
1238
0 commit comments