me
/
guix
Archived
1
0
Fork 0

http-client: 'http-fetch/cached' updates the cache atomically.

* guix/http-client.scm (http-fetch/cached)[update-cache]: Use
'with-atomic-file-output' instead of 'call-with-output-file'.
master
Ludovic Courtès 2016-02-25 16:49:11 +01:00
parent 736f9ffce2
commit e72f50a787
1 changed files with 1 additions and 1 deletions

View File

@ -291,7 +291,7 @@ Raise an '&http-get-error' condition if downloading fails."
;; Update the cache and return an input port.
(let ((port (http-fetch uri #:text? text?)))
(mkdir-p directory)
(call-with-output-file file
(with-atomic-file-output file
(cut dump-port port <>))
(close-port port)
(open-input-file file)))