2013-05-07 14:39:32 -04:00
|
|
|
package build
|
2013-04-21 22:04:35 -04:00
|
|
|
|
|
|
|
import "github.com/mitchellh/packer/packer"
|
|
|
|
|
2013-05-07 14:39:32 -04:00
|
|
|
type Command byte
|
2013-04-21 22:04:35 -04:00
|
|
|
|
2013-05-07 14:14:14 -04:00
|
|
|
func (Command) Run(env packer.Environment, arg []string) int {
|
|
|
|
env.Ui().Say("BUILDING!")
|
2013-04-21 22:04:35 -04:00
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
func (Command) Synopsis() string {
|
|
|
|
return "build image(s) from tempate"
|
|
|
|
}
|