diff --git a/packer/build.go b/packer/build.go index d16451118..7903fff15 100644 --- a/packer/build.go +++ b/packer/build.go @@ -97,7 +97,7 @@ func (b *coreBuild) Prepare() (err error) { packerConfig := map[string]interface{}{ BuildNameConfigKey: b.name, - DebugConfigKey: b.debug, + DebugConfigKey: b.debug, } // Prepare the builder diff --git a/packer/build_test.go b/packer/build_test.go index 576143727..19e91a466 100644 --- a/packer/build_test.go +++ b/packer/build_test.go @@ -41,7 +41,7 @@ func TestBuild_Prepare(t *testing.T) { packerConfig := map[string]interface{}{ BuildNameConfigKey: "test", - DebugConfigKey: false, + DebugConfigKey: false, } build := testBuild() @@ -87,7 +87,7 @@ func TestBuild_Prepare_Debug(t *testing.T) { packerConfig := map[string]interface{}{ BuildNameConfigKey: "test", - DebugConfigKey: true, + DebugConfigKey: true, } build := testBuild()