1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-24 03:00:35 +02:00

substitute: Progress port really closes underlying port.

* guix/scripts/substitute.scm (progress-report-port): Use 'close-port'
instead of 'close-connection'.  Move 'stop' call first.
This commit is contained in:
Ludovic Courtès
2018-09-25 12:28:55 +02:00
parent cfe19684ea
commit f85dbc4f3b

View File

@@ -837,8 +837,8 @@ REPORTER, which should be a <progress-reporter> object."
(make-custom-binary-input-port "progress-port-proc"
read! #f #f
(lambda ()
(close-connection port)
(stop)))))))
(stop)
(close-port port)))))))
(define-syntax with-networking
(syntax-rules ()