aboutsummaryrefslogtreecommitdiffstats
path: root/vm/cuttlefish/cuttlefish.go
diff options
context:
space:
mode:
Diffstat (limited to 'vm/cuttlefish/cuttlefish.go')
-rw-r--r--vm/cuttlefish/cuttlefish.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/vm/cuttlefish/cuttlefish.go b/vm/cuttlefish/cuttlefish.go
index 48cbcbbe0..94610ed4e 100644
--- a/vm/cuttlefish/cuttlefish.go
+++ b/vm/cuttlefish/cuttlefish.go
@@ -104,7 +104,7 @@ func (pool *Pool) Create(workdir string, index int) (vmimpl.Instance, error) {
}
func (inst *instance) sshArgs(command string) []string {
- sshArgs := append(vmimpl.SSHArgs(inst.debug, inst.sshKey, 22), inst.sshUser+"@"+inst.name)
+ sshArgs := append(vmimpl.SSHArgs(inst.debug, inst.sshKey, 22, false), inst.sshUser+"@"+inst.name)
if inst.sshUser != "root" {
return append(sshArgs, "sudo", "bash", "-c", "'"+command+"'")
}