Merge pull request #1346 from tehmaspc/tehmaspc_fix_typo

packer: Fixed typo in error message
pull/1354/head
Mitchell Hashimoto 12 years ago
commit 4101a25b45

@ -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

Loading…
Cancel
Save