We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1fadfe6 + ba8fae0 commit a83be8aCopy full SHA for a83be8a
codeql_bundle/helpers/bundle.py
@@ -566,8 +566,11 @@ def bundle_stdlib_pack(pack: ResolvedCodeQLPack):
566
567
def bundle_library_pack(library_pack: ResolvedCodeQLPack):
568
logging.info(f"Bundling the library pack {library_pack.config.name}.")
569
+
570
+ pack_copy = copy_pack(library_pack)
571
572
self.codeql.pack_bundle(
- library_pack,
573
+ pack_copy,
574
self.bundle_path / "qlpacks",
575
disable_precompilation=self.disable_precompilation,
576
)
0 commit comments