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:
parent
1a248e4868
commit
9c8daed65e
|
@ -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)
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue