packer-cn/packer/version.go

25 lines
495 B
Go
Raw Normal View History

package packer
import "fmt"
// The version of packer.
const Version = "0.1.0.dev"
type versionCommand byte
func (versionCommand) Help() string {
return `usage: packer version
Outputs the version of Packer that is running. There are no additional
command-line flags for this command.`
}
2013-05-02 17:03:55 -04:00
func (versionCommand) Run(env Environment, args []string) int {
env.Ui().Say(fmt.Sprintf("Packer v%v", Version))
return 0
}
2013-03-24 19:28:35 -04:00
func (versionCommand) Synopsis() string {
return "print Packer version"
}