guix-commits
[Top][All Lists]
Advanced

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

02/05: guix system: Don't suggest reconfiguration during reconfiguration


From: guix-commits
Subject: 02/05: guix system: Don't suggest reconfiguration during reconfiguration.
Date: Sat, 4 Jun 2022 21:10:48 -0400 (EDT)

nckx pushed a commit to branch master
in repository guix.

commit 91363452f294835fc6661c7b82e73196fab48786
Author: Tobias Geerinckx-Rice <me@tobias.gr>
AuthorDate: Sun May 29 02:00:00 2022 +0200

    guix system: Don't suggest reconfiguration during reconfiguration.
    
    * guix/scripts/system.scm (process-action):
    Add 'reconfigure to the warning's guard clause.
    
    Reported by johnjaye on #guix.
---
 guix/scripts/system.scm | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/guix/scripts/system.scm b/guix/scripts/system.scm
index 261a1d226d..63e3b9b934 100644
--- a/guix/scripts/system.scm
+++ b/guix/scripts/system.scm
@@ -10,6 +10,7 @@
 ;;; Copyright © 2020 Efraim Flashner <efraim@flashner.co.il>
 ;;; Copyright © 2021 Brice Waegeneire <brice@waegenei.re>
 ;;; Copyright © 2021 Simon Tournier <zimon.toutoune@gmail.com>
+;;; Copyright © 2022 Tobias Geerinckx-Rice <me@tobias.gr>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -1273,7 +1274,7 @@ resulting from command-line parsing."
                (export-shepherd-graph os (current-output-port)
                                       #:backend (graph-backend)))
               (else
-               (unless (memq action '(build init))
+               (unless (memq action '(build init reconfigure))
                  (warn-about-old-distro #:suggested-command
                                         "guix system reconfigure"))
 



reply via email to

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