Fix typo in error message (#9775)

If a variable has not been passed, the error message shown has a tiny typo (varaibles instead of variables)
This commit is contained in:
Sathyajith Bhat 2020-08-17 04:39:08 +03:00 committed by GitHub
parent 1a248e4868
commit 9c8daed65e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -818,7 +818,7 @@ func (c *Core) renderVarsRecursively() (*interpolate.Context, error) {
if !changed && shouldRetry {
return ctx, fmt.Errorf("Failed to interpolate %s: Please make sure that "+
"the variable you're referencing has been defined; Packer treats "+
"all variables used to interpolate other user varaibles as "+
"all variables used to interpolate other user variables as "+
"required.", failedInterpolation)
}