From 38f2853d17541a9c23841c76f4abfbde2bd7063a Mon Sep 17 00:00:00 2001 From: Anton Hvornum Date: Sat, 12 Feb 2022 15:05:56 +0100 Subject: [PATCH] Added debug information --- archinstall/lib/general.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/archinstall/lib/general.py b/archinstall/lib/general.py index 2c2fb530..d0e9506b 100644 --- a/archinstall/lib/general.py +++ b/archinstall/lib/general.py @@ -393,6 +393,9 @@ class SysCommandWorker: exit(1) + with open(f"{storage['LOG_PATH']}/cmd_output.txt", "a") as peak_output_log: + peak_output_log(f"[COMPLETED] {self.cmd[0]} has finished.") + exit(0) else: if storage['arguments'].get('debug'):