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 7ddebfc + 4a28d3d commit a1a7d1cCopy full SHA for a1a7d1c
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