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.
1 parent 7902a1c commit 7e1d155Copy full SHA for 7e1d155
codeql_bundle/codeql-bundle.py
@@ -85,7 +85,7 @@ def cli(
85
selected_packs = packs_in_workspace
86
87
logger.info(
88
- f"Considering the following CodeQL packs for inclusion in the custom bundle: {','.join(map(lambda p: p, packs))}"
+ f"Considering the following CodeQL packs for inclusion in the custom bundle: {','.join(map(lambda p: p.name, selected_packs))}"
89
)
90
missing_packs = set(packs) - {pack.name for pack in selected_packs}
91
if len(missing_packs) > 0:
0 commit comments