diff --git a/packer/config_template.go b/packer/config_template.go index b1084546d..6ee8f0ae1 100644 --- a/packer/config_template.go +++ b/packer/config_template.go @@ -90,7 +90,7 @@ func (t *ConfigTemplate) nextTemplateName() string { func (t *ConfigTemplate) templateUser(n string) (string, error) { result, ok := t.UserVars[n] if !ok { - return "", fmt.Errorf("uknown user var: %s", n) + return "", fmt.Errorf("unknown user var: %s", n) } return result, nil