fix: mispelled variables names in packer/build.go (#8568)

This commit is contained in:
Caleb Lemoine 2020-01-06 07:02:29 -06:00 committed by Adrien Delorme
parent 0649c3f7dc
commit 9f6eb0ef65
1 changed files with 2 additions and 2 deletions

View File

@ -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.