From 9c8daed65e48f4df1fa110370561a832dc5bc5bd Mon Sep 17 00:00:00 2001 From: Sathyajith Bhat Date: Mon, 17 Aug 2020 04:39:08 +0300 Subject: [PATCH] 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) --- packer/core.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packer/core.go b/packer/core.go index aa43d8fbc..400914b33 100644 --- a/packer/core.go +++ b/packer/core.go @@ -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) }