From 4ffa1779f172359c1d44f7cdf38ab965fb546697 Mon Sep 17 00:00:00 2001 From: aaronk1 Date: Fri, 10 May 2019 18:49:42 -0400 Subject: [PATCH] Correct typo in var name --- builder/vmware/vmx/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builder/vmware/vmx/config.go b/builder/vmware/vmx/config.go index 3c950f285..2650c865d 100644 --- a/builder/vmware/vmx/config.go +++ b/builder/vmware/vmx/config.go @@ -101,7 +101,7 @@ func NewConfig(raws ...interface{}) (*Config, []string, error) { if c.Format != "" { if c.RemoteType != "esx5" { errs = packer.MultiErrorAppend(errs, - fmt.Errorf("format is only valid when RemoteType=esx5")) + fmt.Errorf("format is only valid when remote_type=esx5")) } } else { c.Format = "ovf"