diff options
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/podman/main.go | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/cmd/podman/main.go b/cmd/podman/main.go index c336fa629..4034be267 100644 --- a/cmd/podman/main.go +++ b/cmd/podman/main.go @@ -7,6 +7,7 @@ import ( "github.com/containers/storage/pkg/reexec" "github.com/pkg/errors" + "github.com/projectatomic/libpod/version" "github.com/sirupsen/logrus" "github.com/urfave/cli" ) @@ -14,8 +15,7 @@ import ( // This is populated by the Makefile from the VERSION file // in the repository var ( - podmanVersion = "" - exitCode = 125 + exitCode = 125 ) func main() { @@ -30,11 +30,7 @@ func main() { app.Name = "podman" app.Usage = "manage pods and images" - var v string - if podmanVersion != "" { - v = podmanVersion - } - app.Version = v + app.Version = version.Version app.Commands = []cli.Command{ attachCommand, |