1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-16 12:00:35 +02:00

utils: Make sure `substitute' writes all its output.

* guix/build/utils.scm (substitute): Close OUT before renaming it.
This commit is contained in:
Ludovic Courtès 2012-07-06 00:51:55 +02:00
parent 1a7d8e2048
commit 8e6ecb1400

View file

@ -170,6 +170,7 @@ MATCH OUTPUT-PORT)."
(display line out)
(newline out)))
(loop (read-line in)))))))
(close out)
(rename-file template file))
(lambda (key . args)
(false-if-exception (delete-file template))))))