import: elpa: Fix call-with-downloaded-file
* guix/import/elpa.scm (call-with-downloaded-file): Make function behaviour match documentation string. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
d835c6cc4b
commit
36225d4fef
|
@ -89,7 +89,13 @@ NAMES (strings)."
|
||||||
"Fetch URL, store the content in a temporary file and call PROC with that
|
"Fetch URL, store the content in a temporary file and call PROC with that
|
||||||
file. Returns the value returned by PROC. On error call ERROR-THUNK and
|
file. Returns the value returned by PROC. On error call ERROR-THUNK and
|
||||||
return its value or leave if it's false."
|
return its value or leave if it's false."
|
||||||
|
(catch #t
|
||||||
|
(lambda ()
|
||||||
(proc (http-fetch/cached (string->uri url))))
|
(proc (http-fetch/cached (string->uri url))))
|
||||||
|
(lambda (key . args)
|
||||||
|
(if error-thunk
|
||||||
|
(error-thunk)
|
||||||
|
(leave (_ "~A: download failed~%") url)))))
|
||||||
|
|
||||||
(define (is-elpa-package? name elpa-pkg-spec)
|
(define (is-elpa-package? name elpa-pkg-spec)
|
||||||
"Return true if the string NAME corresponds to the name of the package
|
"Return true if the string NAME corresponds to the name of the package
|
||||||
|
|
Loading…
Reference in New Issue