diff options
author | Simon Tournier <zimon.toutoune@gmail.com> | 2023-10-16 18:05:22 +0200 |
---|---|---|
committer | Simon Tournier <zimon.toutoune@gmail.com> | 2023-10-17 14:51:55 +0200 |
commit | c1502676487884e676204e0bf20aea75a69e3589 (patch) | |
tree | 093897292026a3ad40de8cd9d5fcba4964a75d7c /guix | |
parent | fb231e09cbbcbc7f15b8899a28dfb45f001ec6d4 (diff) |
scripts: deploy: Handle EPIPE errors when displaying help.
* guix/scripts/deploy.scm (%options): Handle EPIPE errors when displaying help.
Diffstat (limited to 'guix')
-rw-r--r-- | guix/scripts/deploy.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/scripts/deploy.scm b/guix/scripts/deploy.scm index 14ce736174..4b1a603049 100644 --- a/guix/scripts/deploy.scm +++ b/guix/scripts/deploy.scm @@ -68,7 +68,7 @@ Perform the deployment specified by FILE.\n")) (define %options (cons* (option '(#\h "help") #f #f (lambda args - (show-help) + (leave-on-EPIPE (show-help)) (exit 0))) (option '(#\V "version") #f #f (lambda args |