[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
23/40: scripts: package: Handle EPIPE errors when displaying help.
From: |
guix-commits |
Subject: |
23/40: scripts: package: Handle EPIPE errors when displaying help. |
Date: |
Tue, 17 Oct 2023 08:54:40 -0400 (EDT) |
zimoun pushed a commit to branch master
in repository guix.
commit 4451982ac43e28a1860eaffa9329d0b2bdbba1a2
Author: Simon Tournier <zimon.toutoune@gmail.com>
AuthorDate: Mon Oct 16 17:26:31 2023 +0200
scripts: package: Handle EPIPE errors when displaying help.
Reported by Mathieu Othacehe <othacehe@gnu.org>.
* guix/scripts/package.scm (%options): Handle EPIPE errors when displaying
help.
---
guix/scripts/package.scm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/guix/scripts/package.scm b/guix/scripts/package.scm
index ab1968b62d..a489e06e73 100644
--- a/guix/scripts/package.scm
+++ b/guix/scripts/package.scm
@@ -504,7 +504,7 @@ Install, remove, or upgrade packages in a single
transaction.\n"))
;; Specification of the command-line 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
- 24/40: scripts: processes: Handle EPIPE errors when displaying help., (continued)
- 24/40: scripts: processes: Handle EPIPE errors when displaying help., guix-commits, 2023/10/17
- 11/40: scripts: edit: Handle EPIPE errors when displaying help., guix-commits, 2023/10/17
- 29/40: scripts: repl: Handle EPIPE errors when displaying help., guix-commits, 2023/10/17
- 17/40: scripts: import: Handle EPIPE errors when displaying help., guix-commits, 2023/10/17
- 32/40: scripts: show: Handle EPIPE errors when displaying help., guix-commits, 2023/10/17
- 34/40: scripts: style: Handle EPIPE errors when displaying help., guix-commits, 2023/10/17
- 25/40: scripts: publish: Handle EPIPE errors when displaying help., guix-commits, 2023/10/17
- 31/40: scripts: shell: Handle EPIPE errors when displaying help., guix-commits, 2023/10/17
- 38/40: scripts: upgrade: Handle EPIPE errors when displaying help., guix-commits, 2023/10/17
- 22/40: scripts: pack: Handle EPIPE errors when displaying help., guix-commits, 2023/10/17
- 23/40: scripts: package: Handle EPIPE errors when displaying help.,
guix-commits <=
- 03/40: scripts: build: Handle EPIPE errors when displaying help., guix-commits, 2023/10/17
- 30/40: scripts: search: Handle EPIPE errors when displaying help., guix-commits, 2023/10/17
- 39/40: scripts: weather: Handle EPIPE errors when displaying help., guix-commits, 2023/10/17
- 35/40: scripts: system: Handle EPIPE errors when displaying help., guix-commits, 2023/10/17