From 9f6eb0ef65a57c1d69f9a0917e9587c222e590c7 Mon Sep 17 00:00:00 2001 From: Caleb Lemoine <21261388+circa10a@users.noreply.github.com> Date: Mon, 6 Jan 2020 07:02:29 -0600 Subject: [PATCH] fix: mispelled variables names in packer/build.go (#8568) --- packer/build.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packer/build.go b/packer/build.go index 9403adcd8..46f07e315 100644 --- a/packer/build.go +++ b/packer/build.go @@ -312,10 +312,10 @@ PostProcessorRunSeqLoop: } keep := defaultKeep - // When user has not set keep_input_artifuact + // When user has not set keep_input_artifact // corePP.keepInputArtifact is nil. // In this case, use the keepDefault provided by the postprocessor. - // When user _has_ set keep_input_atifact, go with that instead. + // When user _has_ set keep_input_artifact, go with that instead. // Exception: for postprocessors that will fail/become // useless if keep isn't true, heed forceOverride and keep the // input artifact regardless of user preference.