Skip to content

Commit c387d16

Browse files
committed
Fix stdout/stderr printing
1 parent b010808 commit c387d16

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmd/root.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ root:
136136
for {
137137
s, more := <-stream
138138
if more {
139-
fmt.Sprintln(s, osStream)
139+
fmt.Fprintln(osStream, s)
140140
for _, matcher := range matchers {
141141
if matcher.MatchLine(s) {
142142
restart <- struct{}{}

0 commit comments

Comments
 (0)