aboutsummaryrefslogtreecommitdiff
path: root/scripts/boot.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/boot.py')
-rw-r--r--scripts/boot.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/boot.py b/scripts/boot.py
index d03504a..a055998 100644
--- a/scripts/boot.py
+++ b/scripts/boot.py
@@ -22,7 +22,7 @@ def boot():
sprc = subprocess.Popen(conf.boot_command,
stdout = subprocess.PIPE)
- with open(os.path.join(sf(conf.output_folder), utils.get_last_configuration()), "w") as f:
+ with open(os.path.join(sf(conf.output_folder), utils.get_last_configuration()), "a") as f:
for linen in sprc.stdout:
line = linen.decode('utf-8')
if conf.boot_output: