Fix file open mode
Some checks failed
Lint / lint (push) Failing after 7s
release-tag / release-image (push) Failing after 16s

This commit is contained in:
Logan Cusano
2025-10-23 03:06:26 -04:00
parent a55dfa3158
commit 960070d655

View File

@@ -23,7 +23,7 @@ def generate_liquid_script(config: IcecastConfig):
# Write the processed content to the output path
output_path = "/config/op25.liq"
with open(output_path, 'w') as f:
with open(output_path, 'a+') as f:
f.write(content)
print(f"\nSuccessfully wrote processed configuration to: {output_path}")