diff --git a/cmd/minikube/cmd/start.go b/cmd/minikube/cmd/start.go index 9182a8ff855af9c8daf6dbb8f52fe2b9ebb2891e..04b06896f8cffb9963c9c6306d642f2ac0e02432 100644 --- a/cmd/minikube/cmd/start.go +++ b/cmd/minikube/cmd/start.go @@ -210,7 +210,7 @@ func runStart(cmd *cobra.Command, args []string) { if viper.GetBool(createMount) { mount := viper.GetString(mountString) if len(existing.ContainerVolumeMounts) != 1 || existing.ContainerVolumeMounts[0] != mount { - out.WarningT("Due to the limitations of %s, it's not possible to change mount configuration of an existing cluster.", out.V{"driver": existing.Driver}) + out.WarningT("Due to the limitations of {{.driver}}, it's not possible to change mount configuration of an existing cluster.", out.V{"driver": existing.Driver}) out.WarningT("If necessary delete and recreate the cluster, proceeding with old mount configuration") } }