Skip to content

Commit ea3522b

Browse files
committed
Disable default compilation cache when recreating packs
1 parent a03e9a8 commit ea3522b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

codeql_bundle/helpers/codeql.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ def pack_create(
150150
if pack.config.library:
151151
raise CodeQLException(f"Cannot bundle non-query pack {pack.config.name}!")
152152

153-
args = ["create", "--format=json", f"--output={output_path}", "--threads=0"]
153+
args = ["create", "--format=json", f"--output={output_path}", "--threads=0", "--no-default-compilation-cache"]
154154
if self.supports_qlx():
155155
args.append("--qlx")
156156
if len(additional_packs) > 0:

0 commit comments

Comments
 (0)