refresh: Turn on warnings when '--manifest' is used.
* guix/scripts/refresh.scm (guix-refresh): Set WARN? when '-m' is used.
This commit is contained in:
parent
fca43e14f7
commit
7489207ff7
|
@ -484,7 +484,8 @@ all are dependent packages: ~{~a~^ ~}~%")
|
||||||
;; Warn about missing updaters when a package is explicitly given on
|
;; Warn about missing updaters when a package is explicitly given on
|
||||||
;; the command line.
|
;; the command line.
|
||||||
(warn? (and (or (assoc-ref opts 'argument)
|
(warn? (and (or (assoc-ref opts 'argument)
|
||||||
(assoc-ref opts 'expression))
|
(assoc-ref opts 'expression)
|
||||||
|
(assoc-ref opts 'manifest))
|
||||||
(not recursive?))))
|
(not recursive?))))
|
||||||
(with-error-handling
|
(with-error-handling
|
||||||
(with-store store
|
(with-store store
|
||||||
|
|
Loading…
Reference in New Issue