Skip to content

Commit

Permalink
roachprod: remove -v flag from scp
Browse files Browse the repository at this point in the history
The flag was added in hopes of improving debugging. It only ever added noise.
  • Loading branch information
ajwerner committed Jul 15, 2019
1 parent 02d52a6 commit 9c4e4c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/cmd/roachprod/install/cluster_synced.go
Original file line number Diff line number Diff line change
Expand Up @@ -1486,7 +1486,7 @@ func (c *SyncedCluster) SSH(sshArgs, args []string) error {

func (c *SyncedCluster) scp(src, dest string) error {
args := []string{
"scp", "-v", "-r", "-C",
"scp", "-r", "-C",
"-o", "StrictHostKeyChecking=no",
}
args = append(args, sshAuthArgs()...)
Expand Down

0 comments on commit 9c4e4c0

Please sign in to comment.