ui: 'build-notifier' invokes continuation when there's nothing to do.
* guix/ui.scm (build-notifier): Call CONTINUE when there's nothing to build or download, even when DRY-RUN? is true.master
parent
883a1765a6
commit
9b771305df
15
guix/ui.scm
15
guix/ui.scm
|
@ -1078,12 +1078,15 @@ any build happening."
|
||||||
#f))
|
#f))
|
||||||
things))
|
things))
|
||||||
|
|
||||||
(show-what-to-build store inputs
|
(let-values (((build? download?)
|
||||||
#:dry-run? dry-run?
|
(show-what-to-build store inputs
|
||||||
#:use-substitutes? use-substitutes?
|
#:dry-run? dry-run?
|
||||||
#:mode mode)
|
#:use-substitutes? use-substitutes?
|
||||||
(unless dry-run?
|
#:mode mode)))
|
||||||
(continue #t))))
|
|
||||||
|
(unless (and (or build? download?)
|
||||||
|
dry-run?)
|
||||||
|
(continue #t)))))
|
||||||
|
|
||||||
(define (right-arrow port)
|
(define (right-arrow port)
|
||||||
"Return either a string containing the 'RIGHT ARROW' character, or an ASCII
|
"Return either a string containing the 'RIGHT ARROW' character, or an ASCII
|
||||||
|
|
Reference in New Issue