From 591b8317eac1ad45b37b4c06007d5313b8bda7fb Mon Sep 17 00:00:00 2001 From: Jack Desert Date: Thu, 14 Nov 2024 21:56:54 -0500 Subject: [PATCH] Notify user of LOG_PATH upon completion (#2804) Co-authored-by: jack --- archinstall/lib/installer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/archinstall/lib/installer.py b/archinstall/lib/installer.py index ccd59de0..7c6bb929 100644 --- a/archinstall/lib/installer.py +++ b/archinstall/lib/installer.py @@ -111,7 +111,7 @@ class Installer: raise exc_val if not (missing_steps := self.post_install_check()): - log('Installation completed without any errors. You may now reboot.', fg='green') + log(f'Installation completed without any errors.\nLog files temporarily available at {storage["LOG_PATH"]}.\nYou may reboot when ready.\n', fg='green') self.sync_log_to_install_medium() return True else: