open-nomad/command/version.go

28 lines
545 B
Go
Raw Normal View History

2015-06-01 13:25:51 +00:00
package command
import (
"github.com/hashicorp/nomad/version"
2015-06-01 13:25:51 +00:00
"github.com/mitchellh/cli"
)
// VersionCommand is a Command implementation prints the version.
type VersionCommand struct {
Version *version.VersionInfo
Ui cli.Ui
2015-06-01 13:25:51 +00:00
}
func (c *VersionCommand) Help() string {
return ""
}
func (c *VersionCommand) Name() string { return "version" }
2015-06-01 13:25:51 +00:00
func (c *VersionCommand) Run(_ []string) int {
c.Ui.Output(c.Version.FullVersionNumber(true))
2015-06-01 13:25:51 +00:00
return 0
}
func (c *VersionCommand) Synopsis() string {
return "Prints the Nomad version"
}