guix_mirror_bot pushed a commit to branch wip-fix-system-tests in repository guix.
commit 80be6360bebd52e614b6c5e1303df0e59bba3b66 Author: Mathieu Othacehe <[email protected]> AuthorDate: Mon Jul 7 19:37:31 2025 +0200 tests: installer: Display the final configuration file. Change-Id: Ia5faf696a5244ece955616b4b9a350d057b93696 --- gnu/installer/final.scm | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/gnu/installer/final.scm b/gnu/installer/final.scm index 64c054cd86..45ba1c524b 100644 --- a/gnu/installer/final.scm +++ b/gnu/installer/final.scm @@ -220,6 +220,11 @@ or #f. Return #t on success and #f on failure." (setenv "PATH" "/run/current-system/profile/bin/") + (for-each (lambda (line) + (installer-log-line "~a" line)) + (with-input-from-file (%installer-configuration-file) + read-lines)) + (set! ret (run-command install-command #:tty? #t))) (lambda () ;; Stop guix-daemon so that it does no keep the MNT namespace
