summaryrefslogtreecommitdiff
path: root/gnu/installer/steps.scm
diff options
context:
space:
mode:
authorJosselin Poiret <dev@jpoiret.xyz>2022-01-15 14:49:56 +0100
committerMathieu Othacehe <othacehe@gnu.org>2022-02-02 16:46:43 +0100
commit4f2fd33b4f27f590ec2337daef339cf3e2337dab (patch)
treed4f21ad7f267b276a12c367c4111ec41d5038dcb /gnu/installer/steps.scm
parent7251b15d302cdc53f26555396b226ad60684ad9c (diff)
installer: Use new installer-log-line everywhere.
* gnu/installer.scm (installer-program) * gnu/installer/final.scm (install-locale) * gnu/installer/newt.scm (init) * gnu/installer/newt/final.scm (run-final-page) * gnu/installer/newt/page.scm (run-form-with-clients) * gnu/installer/newt/partition.scm (run-partitioning-page) * gnu/installer/parted.scm (eligible-devices, mkpart, luks-format-and-open, luks-close, mount-user-partitions, umount-user-partitions, free-parted): * gnu/installer/steps.scm (run-installer-steps): * gnu/installer/utils.scm (run-command, send-to-clients): Use it. Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
Diffstat (limited to 'gnu/installer/steps.scm')
-rw-r--r--gnu/installer/steps.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/installer/steps.scm b/gnu/installer/steps.scm
index 55433cff31a..d9b3d6d07ec 100644
--- a/gnu/installer/steps.scm
+++ b/gnu/installer/steps.scm
@@ -185,7 +185,7 @@ return the accumalated result so far."
185 #:done-steps '()))))) 185 #:done-steps '())))))
186 ((installer-step-break? c) 186 ((installer-step-break? c)
187 (reverse result))) 187 (reverse result)))
188 (syslog "running step '~a'~%" (installer-step-id step)) 188 (installer-log-line "running step '~a'" (installer-step-id step))
189 (let* ((id (installer-step-id step)) 189 (let* ((id (installer-step-id step))
190 (compute (installer-step-compute step)) 190 (compute (installer-step-compute step))
191 (res (compute result done-steps))) 191 (res (compute result done-steps)))