未验证 提交 073e3af6 编写于 作者: T Thomas Strömberg 提交者: GitHub

Merge pull request #7096 from priyawadhwa/issue-7095

If user doesn't specify driver, don't validate against existing cluster
......@@ -496,6 +496,10 @@ func validateSpecifiedDriver(existing *config.ClusterConfig) {
} else if d := viper.GetString("vm-driver"); d != "" {
requested = d
}
// Neither --vm-driver or --driver was specified
if requested == "" {
return
}
if old == requested {
return
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册