Skip to content

Commit

Permalink
command: fix stdin operation output (#177)
Browse files Browse the repository at this point in the history
When I added output format, I accidentally changed a string cast for
the stdin operation's output which I should have left.
  • Loading branch information
braydonk committed May 4, 2024
1 parent e7c802f commit 9311c40
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion command/command.go
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ func (c *Command) Run() error {
if err != nil {
return err
}
fmt.Print(out)
fmt.Print(string(out))
}

return nil
Expand Down

0 comments on commit 9311c40

Please sign in to comment.