aboutsummaryrefslogtreecommitdiff
path: root/guix/scripts/locate.scm
diff options
context:
space:
mode:
authorSimon Tournier <zimon.toutoune@gmail.com>2023-10-16 18:48:13 +0200
committerSimon Tournier <zimon.toutoune@gmail.com>2023-10-17 14:51:59 +0200
commit55c3776023d47820d532cb226974e0de171f636a (patch)
treea440196ba54e7283482898f0e617d81ef573e6a3 /guix/scripts/locate.scm
parent078107289a8a39d884607fedfec05ba802ee6077 (diff)
downloadguix-55c3776023d47820d532cb226974e0de171f636a.tar
guix-55c3776023d47820d532cb226974e0de171f636a.tar.gz
scripts: locate: Handle EPIPE errors when displaying help.
* guix/scripts/locate.scm (%options): Handle EPIPE errors when displaying help.
Diffstat (limited to 'guix/scripts/locate.scm')
-rw-r--r--guix/scripts/locate.scm2
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")))