From 5874bbe588265762028bacdac12ab985f7d28062 Mon Sep 17 00:00:00 2001 From: Yasuhiro Matsumoto Date: Wed, 15 Jul 2026 08:36:36 +0900 Subject: [PATCH] relay: exit with an error code when fetching the information document fails, like the other line-processing commands. --- relay.go | 1 + 1 file changed, 1 insertion(+) diff --git a/relay.go b/relay.go index 0f9f66d..a72342d 100644 --- a/relay.go +++ b/relay.go @@ -31,6 +31,7 @@ var relay = &cli.Command{ pretty, _ := json.MarshalIndent(info, "", " ") stdout(string(pretty)) } + exitIfLineProcessingError(ctx) return nil }, }