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:
parent
a463ba33fc
commit
1cdf9dc834
1 changed files with 6 additions and 2 deletions
8
cmd/dist/main.go
vendored
8
cmd/dist/main.go
vendored
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue