Skip to content

Commit

Permalink
fix stderr
Browse files Browse the repository at this point in the history
  • Loading branch information
Pantani authored and Pantani committed Jan 18, 2024
1 parent 2a6864b commit e31a61d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hermes/cmd/hermes_exec.go
Original file line number Diff line number Diff line change
@@ -28,8 +28,8 @@ func hermesExecuteHandler(cmd *cobra.Command, args []string) error {
return h.Run(
cmd.Context(),
hermes.WithArgs(args...),
hermes.WithStdOut(cmd.OutOrStdout()),
hermes.WithStdIn(cmd.InOrStdin()),
hermes.WithStdOut(cmd.ErrOrStderr()),
hermes.WithStdOut(cmd.OutOrStdout()),
hermes.WithStdErr(cmd.ErrOrStderr()),
)
}

0 comments on commit e31a61d

Please sign in to comment.