cmd/dist: consistently replace version string

A previous PR placed the version string replacement in the `init`
function in the other commands. This makes this same change consistently
in the `dist` tool.

Signed-off-by: Stephen J Day <stephen.day@docker.com>
This commit is contained in:
Stephen J Day 2017-02-24 16:09:19 -08:00
parent a463ba33fc
commit 1cdf9dc834
No known key found for this signature in database
GPG Key ID: 67B3DED84EDC823F
1 changed files with 6 additions and 2 deletions

8
cmd/dist/main.go vendored
View File

@ -14,10 +14,14 @@ var (
background = contextpkg.Background()
)
func main() {
func init() {
cli.VersionPrinter = func(c *cli.Context) {
fmt.Println(os.Args[0], containerd.Package, containerd.Version)
fmt.Println(c.App.Name, containerd.Package, c.App.Version)
}
}
func main() {
app := cli.NewApp()
app.Name = "dist"
app.Version = containerd.Version