packer-cn/packer/version.go

19 lines
380 B
Go

package packer
import "fmt"
// The version of packer.
const Version = "0.1.0.dev"
type versionCommand byte
// Implement the Command interface by simply showing the version
func (versionCommand) Run(env Environment, args []string) int {
env.Ui().Say(fmt.Sprintf("Packer v%v\n", Version))
return 0
}
func (versionCommand) Synopsis() string {
return "print Packer version"
}