Skip to content

Commit

Permalink
Stop outputting every file we copy from remote.
Browse files Browse the repository at this point in the history
  • Loading branch information
AWoloszyn authored and pmuetschard committed Jul 26, 2019
1 parent 089936b commit 4f9b26e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/os/device/remotessh/commands.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down

0 comments on commit 4f9b26e

Please # to comment.