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 7ddebfc commit 4a28d3dCopy full SHA for 4a28d3d
codeql_bundle/helpers/bundle.py
@@ -459,7 +459,7 @@ def bundle_stdlib_pack(pack: ResolvedCodeQLPack):
459
f"import {customization_pack.get_module_name()}.Customizations"
460
)
461
with pack_copy.get_customizations_module_path().open("w") as fd:
462
- fd.writelines(contents)
+ fd.writelines(map(lambda content: content + "\n", contents))
463
464
# Remove the original target library pack
465
logging.debug(
0 commit comments