guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/20: installer: Use define instead of let at top-level.


From: guix-commits
Subject: 02/20: installer: Use define instead of let at top-level.
Date: Wed, 2 Feb 2022 10:47:05 -0500 (EST)

mothacehe pushed a commit to branch master
in repository guix.

commit 4a68a00c8b86b999510b0cd3aaeb76c064fbcd34
Author: Josselin Poiret <dev@jpoiret.xyz>
AuthorDate: Sat Jan 15 14:49:54 2022 +0100

    installer: Use define instead of let at top-level.
    
    * gnu/installer.scm (installer-program): Improve readability by using
    define at top-level.
    
    Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
---
 gnu/installer.scm | 88 +++++++++++++++++++++++++++----------------------------
 1 file changed, 44 insertions(+), 44 deletions(-)

diff --git a/gnu/installer.scm b/gnu/installer.scm
index d57b1d673a..134fa2faaf 100644
--- a/gnu/installer.scm
+++ b/gnu/installer.scm
@@ -412,50 +412,50 @@ selected keymap."
             ;; verbose.
             (terminal-width 200)
 
-            (let* ((current-installer newt-installer)
-                   (steps (#$steps current-installer)))
-              ((installer-init current-installer))
-
-              (catch #t
-                (lambda ()
-                  (define results
-                    (run-installer-steps
-                     #:rewind-strategy 'menu
-                     #:menu-proc (installer-menu-page current-installer)
-                     #:steps steps))
-
-                  (match (result-step results 'final)
-                    ('success
-                     ;; We did it!  Let's reboot!
-                     (sync)
-                     (stop-service 'root))
-                    (_
-                     ;; The installation failed, exit so that it is restarted
-                     ;; by login.
-                     #f)))
-                (const #f)
-                (lambda (key . args)
-                  (syslog "crashing due to uncaught exception: ~s ~s~%"
-                          key args)
-                  (let ((error-file "/tmp/last-installer-error")
-                        (dump-archive "/tmp/dump.tgz"))
-                    (call-with-output-file error-file
-                      (lambda (port)
-                        (display-backtrace (make-stack #t) port)
-                        (print-exception port
-                                         (stack-ref (make-stack #t) 1)
-                                         key args)))
-                    (make-dump dump-archive
-                               #:result %current-result
-                               #:backtrace error-file)
-                    (let ((report
-                           ((installer-dump-page current-installer)
-                            dump-archive)))
-                      ((installer-exit-error current-installer)
-                       error-file report key args)))
-                  (primitive-exit 1)))
-
-              ((installer-exit current-installer)))))))
+            (define current-installer newt-installer)
+            (define steps (#$steps current-installer))
+            ((installer-init current-installer))
+
+            (catch #t
+              (lambda ()
+                (define results
+                  (run-installer-steps
+                   #:rewind-strategy 'menu
+                   #:menu-proc (installer-menu-page current-installer)
+                   #:steps steps))
+
+                (match (result-step results 'final)
+                  ('success
+                   ;; We did it!  Let's reboot!
+                   (sync)
+                   (stop-service 'root))
+                  (_
+                   ;; The installation failed, exit so that it is restarted
+                   ;; by login.
+                   #f)))
+              (const #f)
+              (lambda (key . args)
+                (syslog "crashing due to uncaught exception: ~s ~s~%"
+                        key args)
+                (let ((error-file "/tmp/last-installer-error")
+                      (dump-archive "/tmp/dump.tgz"))
+                  (call-with-output-file error-file
+                    (lambda (port)
+                      (display-backtrace (make-stack #t) port)
+                      (print-exception port
+                                       (stack-ref (make-stack #t) 1)
+                                       key args)))
+                  (make-dump dump-archive
+                             #:result %current-result
+                             #:backtrace error-file)
+                  (let ((report
+                         ((installer-dump-page current-installer)
+                          dump-archive)))
+                    ((installer-exit-error current-installer)
+                     error-file report key args)))
+                (primitive-exit 1)))
+
+            ((installer-exit current-installer))))))
 
   (program-file
    "installer"



reply via email to

[Prev in Thread] Current Thread [Next in Thread]