Skip to content

Commit

Permalink
Fix default output
Browse files Browse the repository at this point in the history
  • Loading branch information
lafriks committed Nov 30, 2021
1 parent e1457c9 commit a534f0a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/commands/run.go
Original file line number Diff line number Diff line change
Expand Up @@ -439,7 +439,7 @@ func (e *Executor) runAndPrint(ctx context.Context, args []string) error {
}

func (e *Executor) createWriter(path string) (io.Writer, bool, error) {
if path == "stdout" {
if path == "" || path == "stdout" {
return logutils.StdOut, false, nil
}
if path == "stderr" {
Expand Down

0 comments on commit a534f0a

Please sign in to comment.