We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
codeql pack add
1 parent f2eea40 commit b418f47Copy full SHA for b418f47
1 file changed
extensions/ql-vscode/src/codeql-cli/cli.ts
@@ -1384,13 +1384,10 @@ export class CodeQLCliServer implements Disposable {
1384
async packAdd(dir: string, queryLanguage: QueryLanguage) {
1385
const args = ["--dir", dir];
1386
args.push(`codeql/${queryLanguage}-all`);
1387
- return this.runJsonCodeQlCliCommandWithAuthentication(
+ return this.runCodeQlCliCommand(
1388
["pack", "add"],
1389
args,
1390
`Adding and installing ${queryLanguage} pack dependency.`,
1391
- {
1392
- addFormat: false,
1393
- },
1394
);
1395
}
1396
0 commit comments