diff options
author | Simon Tournier <zimon.toutoune@gmail.com> | 2023-10-16 18:48:13 +0200 |
---|---|---|
committer | Simon Tournier <zimon.toutoune@gmail.com> | 2023-10-17 14:51:59 +0200 |
commit | 55c3776023d47820d532cb226974e0de171f636a (patch) | |
tree | a440196ba54e7283482898f0e617d81ef573e6a3 | |
parent | 078107289a8a39d884607fedfec05ba802ee6077 (diff) | |
download | guix-55c3776023d47820d532cb226974e0de171f636a.tar.gz |
scripts: locate: Handle EPIPE errors when displaying help.
* guix/scripts/locate.scm (%options): Handle EPIPE errors when displaying help.
-rw-r--r-- | guix/scripts/locate.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/scripts/locate.scm b/guix/scripts/locate.scm index 79af533fd9..5f3e28797f 100644 --- a/guix/scripts/locate.scm +++ b/guix/scripts/locate.scm @@ -543,7 +543,7 @@ Locate FILE and return the list of packages that contain it.\n")) (define %options (list (option '(#\h "help") #f #f - (lambda args (show-help) (exit 0))) + (lambda args (leave-on-EPIPE (show-help)) (exit 0))) (option '(#\V "version") #f #f (lambda (opt name arg result) (show-version-and-exit "guix locate"))) |