mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-14 07:00:32 -05:00
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.
This commit is contained in:
parent
883a1765a6
commit
9b771305df
1 changed files with 9 additions and 6 deletions
15
guix/ui.scm
15
guix/ui.scm
|
@ -1078,12 +1078,15 @@ (define inputs
|
|||
#f))
|
||||
things))
|
||||
|
||||
(show-what-to-build store inputs
|
||||
#:dry-run? dry-run?
|
||||
#:use-substitutes? use-substitutes?
|
||||
#:mode mode)
|
||||
(unless dry-run?
|
||||
(continue #t))))
|
||||
(let-values (((build? download?)
|
||||
(show-what-to-build store inputs
|
||||
#:dry-run? dry-run?
|
||||
#:use-substitutes? use-substitutes?
|
||||
#:mode mode)))
|
||||
|
||||
(unless (and (or build? download?)
|
||||
dry-run?)
|
||||
(continue #t)))))
|
||||
|
||||
(define (right-arrow port)
|
||||
"Return either a string containing the 'RIGHT ARROW' character, or an ASCII
|
||||
|
|
Loading…
Reference in a new issue