diff options
author | Simon Tournier <zimon.toutoune@gmail.com> | 2023-10-16 18:04:08 +0200 |
---|---|---|
committer | Simon Tournier <zimon.toutoune@gmail.com> | 2023-10-17 14:51:56 +0200 |
commit | 6c6071faf9adba374160fd6168789f0c7c8eb35f (patch) | |
tree | 683bfefde5ec78f572328ebd0e6671c4fbab6ef4 | |
parent | a53e5fb1214d1df025035ae5e95a1a928ab038af (diff) |
scripts: discover: Handle EPIPE errors when displaying help.
* guix/scripts/discover.scm (%options): Handle EPIPE errors when displaying
help.
-rw-r--r-- | guix/scripts/discover.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/scripts/discover.scm b/guix/scripts/discover.scm index 8970f835c9..32bf6085a5 100644 --- a/guix/scripts/discover.scm +++ b/guix/scripts/discover.scm @@ -50,7 +50,7 @@ Discover Guix related services using Avahi.\n")) (alist-cons 'cache arg result))) (option '(#\h "help") #f #f (lambda _ - (show-help) + (leave-on-EPIPE (show-help)) (exit 0))) (option '(#\V "version") #f #f (lambda _ |