import: Gracefully handle EPIPE.
Previously, "guix import pypi f3 | head -3" would print a backtrace. * guix/scripts/import.scm (guix-import): Wrap 'pretty-print-with-comments' call in 'leave-on-EPIPE'.master
parent
872b248745
commit
92ee0fd5eb
|
@ -85,7 +85,8 @@ Run IMPORTER with ARGS.\n"))
|
|||
((importer args ...)
|
||||
(if (member importer importers)
|
||||
(let ((print (lambda (expr)
|
||||
(pretty-print-with-comments (current-output-port) expr))))
|
||||
(leave-on-EPIPE
|
||||
(pretty-print-with-comments (current-output-port) expr)))))
|
||||
(match (apply (resolve-importer importer) args)
|
||||
((and expr (or ('package _ ...)
|
||||
('let _ ...)
|
||||
|
|
Reference in New Issue