We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e1457c9 commit a534f0aCopy full SHA for a534f0a
pkg/commands/run.go
@@ -439,7 +439,7 @@ func (e *Executor) runAndPrint(ctx context.Context, args []string) error {
439
}
440
441
func (e *Executor) createWriter(path string) (io.Writer, bool, error) {
442
- if path == "stdout" {
+ if path == "" || path == "stdout" {
443
return logutils.StdOut, false, nil
444
445
if path == "stderr" {
0 commit comments