diff --git a/app/internal/liquidsoap_config_utils.py b/app/internal/liquidsoap_config_utils.py index d7802f6..f5bf92c 100644 --- a/app/internal/liquidsoap_config_utils.py +++ b/app/internal/liquidsoap_config_utils.py @@ -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}")