Commit 4101a25b authored by Mitchell Hashimoto's avatar Mitchell Hashimoto

Merge pull request #1346 from tehmaspc/tehmaspc_fix_typo

packer: Fixed typo in error message
parents f6f4d6b3 9cf711cf
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment