packer-cn/command/build/command.go

15 lines
257 B
Go
Raw Normal View History

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