Update kpod version and info to show beta version

Signed-off-by: umohnani8 <umohnani@redhat.com>
This commit is contained in:
umohnani8 2017-09-07 17:53:32 -04:00
parent 36584e6f34
commit 12512e418b
5 changed files with 19 additions and 2 deletions

View file

@ -8,6 +8,10 @@ import (
"github.com/urfave/cli"
)
// This is populated by the Makefile from the VERSION file
// in the repository
var kpodVersion = ""
func main() {
if reexec.Init() {
return
@ -16,7 +20,12 @@ func main() {
app := cli.NewApp()
app.Name = "kpod"
app.Usage = "manage pods and images"
app.Version = "0.0.1"
var v string
if kpodVersion != "" {
v = kpodVersion
}
app.Version = v
app.Commands = []cli.Command{
diffCommand,