Merge pull request #6355 from afbjorklund/selecting-space
Remove stray space from driver selection messagepull/6362/head
commit
20e6c5c579
|
@ -586,11 +586,11 @@ func selectDriver(existing *cfg.MachineConfig) string {
|
|||
pick, alts := driver.Choose(name, options)
|
||||
exp := ""
|
||||
if pick.Priority == registry.Experimental {
|
||||
exp = "experimental"
|
||||
exp = "experimental "
|
||||
}
|
||||
|
||||
if name != "" {
|
||||
out.T(out.Sparkle, `Selecting {{.experimental}} '{{.driver}}' driver from user configuration (alternates: {{.alternates}})`, out.V{"experimental": exp, "driver": name, "alternates": alts})
|
||||
out.T(out.Sparkle, `Selecting {{.experimental}}'{{.driver}}' driver from user configuration (alternates: {{.alternates}})`, out.V{"experimental": exp, "driver": name, "alternates": alts})
|
||||
return name
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue