mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: js-mathjax: Avoid "Too many open files" error while building.
* gnu/packages/javascript.scm (js-mathjax)[arguments]: Add call to 'close-pipe'. Previously builds would sometimes fail with EMFILE (this was non-deterministic as it depends on GC activity.)
This commit is contained in:
parent
9c64080dce
commit
9da2dd90e2
1 changed files with 5 additions and 1 deletions
|
@ -117,7 +117,11 @@ (define-public js-mathjax
|
||||||
(let ((minified (open-pipe* OPEN_READ "uglify-js" file)))
|
(let ((minified (open-pipe* OPEN_READ "uglify-js" file)))
|
||||||
(call-with-output-file installed
|
(call-with-output-file installed
|
||||||
(lambda (port)
|
(lambda (port)
|
||||||
(dump-port minified port)))))
|
(dump-port minified port)))
|
||||||
|
|
||||||
|
(let ((exit (close-pipe minified)))
|
||||||
|
(unless (zero? exit)
|
||||||
|
(error "dear, uglify-js failed" exit)))))
|
||||||
(else
|
(else
|
||||||
(install-file file (dirname installed))))))
|
(install-file file (dirname installed))))))
|
||||||
(find-files "."))
|
(find-files "."))
|
||||||
|
|
Loading…
Reference in a new issue