You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
packer/command/build/command.go

15 lines
251 B

package build
import "github.com/mitchellh/packer/packer"
type Command byte
func (Command) Run(env packer.Environment, arg []string) int {
env.Ui().Say("YO!")
return 0
}
func (Command) Synopsis() string {
return "build image(s) from tempate"
}