diff options
author | Simon Tournier <zimon.toutoune@gmail.com> | 2023-10-16 17:48:23 +0200 |
---|---|---|
committer | Simon Tournier <zimon.toutoune@gmail.com> | 2023-10-17 14:52:05 +0200 |
commit | a293b1cfa732963343cc76845a770d1b182cf1f9 (patch) | |
tree | 1bbbbb640cdfb8521b99d9325d559db68a194b3e /guix | |
parent | c4aa37fde9732fc3600400ef420a732f2cf8fd97 (diff) |
scripts: time-machine: Handle EPIPE errors when displaying help.
* guix/scripts/time-machine.scm (%options): Handle EPIPE errors when
displaying help.
Diffstat (limited to 'guix')
-rw-r--r-- | guix/scripts/time-machine.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/scripts/time-machine.scm b/guix/scripts/time-machine.scm index 3ecf735acb..f31fae7435 100644 --- a/guix/scripts/time-machine.scm +++ b/guix/scripts/time-machine.scm @@ -107,7 +107,7 @@ Execute COMMAND ARGS... in an older version of Guix.\n")) (alist-cons 'authenticate-channels? #f result))) (option '(#\h "help") #f #f (lambda args - (show-help) + (leave-on-EPIPE (show-help)) (exit 0))) (option '(#\V "version") #f #f (lambda args |