Skip to content
Snippets Groups Projects
Unverified Commit e0f97e47 authored by Mathieu Othacehe's avatar Mathieu Othacehe
Browse files

Fix interactive checkout.

This is a work-around: https://issues.guix.gnu.org/44742.

* src/cuirass/base.scm (fetch-inputs): Set "current-error-port" parameter to a
void port to prevent the fetch progression bar to appear.
parent 053f9227
No related branches found
No related tags found
No related merge requests found
......@@ -734,8 +734,10 @@ by PRODUCT-SPECS."
(log-message "fetching input '~a' of spec '~a'"
(assq-ref input #:name)
(assq-ref spec #:name))
(fetch-input store input
#:writable-copy? (compile? input)))))
;; XXX: Work around: https://issues.guix.gnu.org/44742.
(parameterize ((current-error-port (%make-void-port "rw+")))
(fetch-input store input
#:writable-copy? (compile? input))))))
inputs))
(results (map %non-blocking thunks)))
(map (lambda (checkout)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment