Merge pull request #3932 from tstromberg/gofmt

Run: gofmt -s -w
pull/3935/head
Thomas Strömberg 2019-03-21 22:00:52 -07:00 committed by GitHub
commit 2c9395a919
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -202,7 +202,7 @@ const (
// DefaultMsize is the default number of bytes to use for 9p packet payload
DefaultMsize = 262144
// DefaultMountVersion is the default 9p version to use for mount
DefaultMountVersion = "9p2000.L"
DefaultMountVersion = "9p2000.L"
)
// GetKubernetesReleaseURL gets the location of a kubernetes client

View File

@ -191,6 +191,7 @@ func (m *MinikubeRunner) RunDaemon2(command string) (*exec.Cmd, *bufio.Reader, *
}
return cmd, bufio.NewReader(stdoutPipe), bufio.NewReader(stderrPipe)
}
// SSH returns the output of running a command using SSH
func (m *MinikubeRunner) SSH(command string) (string, error) {
path, _ := filepath.Abs(m.BinaryPath)