This commit is contained in:
Mitchell Hashimoto 2013-05-23 21:59:03 -07:00
parent 7eb8daaa9c
commit 84891701bd
3 changed files with 5 additions and 5 deletions

View File

@ -34,8 +34,8 @@ func (Command) Run(env packer.Environment, args []string) int {
// The component finder for our builds // The component finder for our builds
components := &packer.ComponentFinder{ components := &packer.ComponentFinder{
Builder: env.Builder, Builder: env.Builder,
Hook: env.Hook, Hook: env.Hook,
Provisioner: env.Provisioner, Provisioner: env.Provisioner,
} }

View File

@ -19,8 +19,8 @@ build = "packer-command-build"
` `
type config struct { type config struct {
Builders map[string]string Builders map[string]string
Commands map[string]string Commands map[string]string
Provisioners map[string]string Provisioners map[string]string
} }

View File

@ -9,7 +9,7 @@ import (
) )
type cmdProvisioner struct { type cmdProvisioner struct {
p packer.Provisioner p packer.Provisioner
client *client client *client
} }