Merge pull request #571 from stevvooe/use-init-func
cmd/dist: consistently replace version string
This commit is contained in:
commit
e04df4e3e5
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