diff --git a/core/os/device/remotessh/commands.go b/core/os/device/remotessh/commands.go index a80f3e2134..a2b57b55ca 100644 --- a/core/os/device/remotessh/commands.go +++ b/core/os/device/remotessh/commands.go @@ -235,7 +235,7 @@ func (b binding) PullFile(ctx context.Context, source, dest string) error { } defer outfile.Close() - contents, err := b.Shell("cat", source).Capture(outfile, nil).Verbose().Start(ctx) + contents, err := b.Shell("cat", source).Capture(outfile, nil).Start(ctx) if err != nil { return err }