Skip to content

Commit 89195e6

Browse files
committed
one more tweak to verbose mode
1 parent 19e2181 commit 89195e6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

core/shell/shell.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -136,9 +136,9 @@ func (s *DefaultShell) Exec(command builder.Command, extraArgs ...string) (outSt
136136
}
137137

138138
if verbose {
139-
fmt.Fprintf(s.ErrStream(), "$ (exec) %s %v\n",
139+
fmt.Fprintf(s.ErrStream(), "$ (exec) %s %s\n",
140140
exe,
141-
args,
141+
strings.Join(args, " "),
142142
)
143143
}
144144

0 commit comments

Comments
 (0)