Skip to content
Snippets Groups Projects
Commit b3a53fb3 authored by Ludovic Courtès's avatar Ludovic Courtès
Browse files

download: Work around (web client) bug <http://bugs.gnu.org/13095>.

* guix/build/download.scm: Annihilate `shutdown' in (web client).
parent cdec10f9
No related branches found
No related tags found
No related merge requests found
...@@ -92,6 +92,11 @@ (define addresses ...@@ -92,6 +92,11 @@ (define addresses
'set-port-encoding! 'set-port-encoding!
(lambda (p e) #f)) (lambda (p e) #f))
;; XXX: Work around <http://bugs.gnu.org/13095>, present in Guile
;; up to 2.0.7.
(module-define! (resolve-module '(web client))
'shutdown (const #f))
(define (http-fetch uri file) (define (http-fetch uri file)
"Fetch data from URI and write it to FILE. Return FILE on success." "Fetch data from URI and write it to FILE. Return FILE on success."
......
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