mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 13:28:12 -05:00
utils: Make sure `substitute' writes all its output.
* guix/build/utils.scm (substitute): Close OUT before renaming it.
This commit is contained in:
parent
1a7d8e2048
commit
8e6ecb1400
1 changed files with 1 additions and 0 deletions
|
@ -170,6 +170,7 @@ (define (substitute file pattern match-proc)
|
||||||
(display line out)
|
(display line out)
|
||||||
(newline out)))
|
(newline out)))
|
||||||
(loop (read-line in)))))))
|
(loop (read-line in)))))))
|
||||||
|
(close out)
|
||||||
(rename-file template file))
|
(rename-file template file))
|
||||||
(lambda (key . args)
|
(lambda (key . args)
|
||||||
(false-if-exception (delete-file template))))))
|
(false-if-exception (delete-file template))))))
|
||||||
|
|
Loading…
Reference in a new issue