Fix docker-env integration test

pull/393/head
Jimmi Dyson 2016-07-26 09:21:45 +01:00
parent e6c988e5a7
commit 806a950437
No known key found for this signature in database
GPG Key ID: 978CD4AF4C1E87F5
1 changed files with 1 additions and 1 deletions

View File

@ -85,7 +85,7 @@ func (m *MinikubeRunner) EnsureRunning() {
}
func (m *MinikubeRunner) SetEnvFromEnvCmdOutput(dockerEnvVars string) error {
re := regexp.MustCompile("export (.+?)=(.+?)\n")
re := regexp.MustCompile(`export (.+?)="?(.+?)"?\n`)
matches := re.FindAllStringSubmatch(dockerEnvVars, -1)
seenEnvVar := false
for _, m := range matches {