Skip to content

Commit 43875bd

Browse files
authored
Merge pull request #39 from kbst/fixnewline
Fix missing newline in clusters.tf in dist.py
2 parents 6069984 + 9265f8d commit 43875bd

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

quickstart/dist.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,5 +44,7 @@
4444

4545
with open(f'{configuration_dist}/clusters.tf', 'w') as f:
4646
f.write(data)
47+
# always include newline at end of file
48+
f.write('\n')
4749

4850
make_archive(archive_name, 'zip', f'{DISTDIR}', configuration_name)

0 commit comments

Comments
 (0)