fix crash caused by invalid datacenter url

This commit is contained in:
Megan Marsh 2018-07-23 16:12:21 -07:00
parent 07b6bc0c4f
commit 8f1eb5a61b
1 changed files with 1 additions and 0 deletions

View File

@ -76,6 +76,7 @@ func (p *PostProcessor) Configure(raws ...interface{}) error {
if err != nil {
errs = packer.MultiErrorAppend(
errs, fmt.Errorf("Error invalid vSphere sdk endpoint: %s", err))
return errs
}
sdk.User = url.UserPassword(p.config.Username, p.config.Password)