From 8ffab257ddb6c5df1ac43b9baeb5f0373bffb482 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Sun, 17 Mar 2019 16:22:43 +0100 Subject: [PATCH] guix system: Fix success report of the bootloader installation. Fixes . Reported by Jack Hill . Regression introduced in 21fcfe1ee969cc477dc41486ae4074e655d44274. * guix/scripts/system.scm (bootloader-installer-script): Ungexp DEVICE. --- guix/scripts/system.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guix/scripts/system.scm b/guix/scripts/system.scm index b4bf66819f..97508f4bd6 100644 --- a/guix/scripts/system.scm +++ b/guix/scripts/system.scm @@ -818,7 +818,7 @@ and TARGET arguments." (exit 1))) (#$installer #$bootloader #$device #$target) (format #t "bootloader successfully installed on '~a'~%" - device)))))) + #$device)))))) (define* (perform-action action os #:key skip-safety-checks?