mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
guix system: Don't warn about old distros for "guix system init".
* guix/scripts/system.scm (process-action): Don't call 'warn-about-old-distro' when ACTION is 'init' or 'build'.
This commit is contained in:
parent
092c58e745
commit
8a29dc07a4
1 changed files with 4 additions and 2 deletions
|
@ -847,8 +847,10 @@ (define (process-action action args opts)
|
|||
((shepherd-graph)
|
||||
(export-shepherd-graph os (current-output-port)))
|
||||
(else
|
||||
(warn-about-old-distro #:suggested-command
|
||||
"guix system reconfigure")
|
||||
(unless (memq action '(build init))
|
||||
(warn-about-old-distro #:suggested-command
|
||||
"guix system reconfigure"))
|
||||
|
||||
(perform-action action os
|
||||
#:dry-run? dry?
|
||||
#:derivations-only? (assoc-ref opts
|
||||
|
|
Loading…
Reference in a new issue