From 9311c4081aae8b11bec5343ad6fe9932c1c6967d Mon Sep 17 00:00:00 2001 From: Braydon Kains <93549768+braydonk@users.noreply.github.com> Date: Sat, 4 May 2024 09:18:01 -0400 Subject: [PATCH] command: fix stdin operation output (#177) When I added output format, I accidentally changed a string cast for the stdin operation's output which I should have left. --- command/command.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/command/command.go b/command/command.go index 7fc7862..9a9eab0 100644 --- a/command/command.go +++ b/command/command.go @@ -158,7 +158,7 @@ func (c *Command) Run() error { if err != nil { return err } - fmt.Print(out) + fmt.Print(string(out)) } return nil