mainVersion: Remove minio init and quiet handling (#3739)

master
Bala FA 8 years ago committed by Harshavardhana
parent 22909c849e
commit a53b909fcd
  1. 20
      cmd/version-main.go

@ -1,5 +1,5 @@
/* /*
* Minio Cloud Storage, (C) 2015 Minio, Inc. * Minio Cloud Storage, (C) 2015, 2016, 2017 Minio, Inc.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@ -25,7 +25,12 @@ var versionCmd = cli.Command{
Name: "version", Name: "version",
Usage: "Print version.", Usage: "Print version.",
Action: mainVersion, Action: mainVersion,
Flags: globalFlags, Flags: []cli.Flag{
cli.BoolFlag{
Name: "help, h",
Usage: "Show this help.",
},
},
CustomHelpTemplate: `NAME: CustomHelpTemplate: `NAME:
minio {{.Name}} - {{.Usage}} minio {{.Name}} - {{.Usage}}
@ -35,8 +40,8 @@ USAGE:
FLAGS: FLAGS:
{{range .Flags}}{{.}} {{range .Flags}}{{.}}
{{end}} {{end}}
VERSION:
`, ` + Version + `{{"\n"}}`,
} }
func mainVersion(ctx *cli.Context) { func mainVersion(ctx *cli.Context) {
@ -44,13 +49,6 @@ func mainVersion(ctx *cli.Context) {
cli.ShowCommandHelpAndExit(ctx, "version", 1) cli.ShowCommandHelpAndExit(ctx, "version", 1)
} }
// Initialization routine, such as config loading, enable logging, ..
minioInit(ctx)
if globalQuiet {
return
}
console.Println("Version: " + Version) console.Println("Version: " + Version)
console.Println("Release-Tag: " + ReleaseTag) console.Println("Release-Tag: " + ReleaseTag)
console.Println("Commit-ID: " + CommitID) console.Println("Commit-ID: " + CommitID)

Loading…
Cancel
Save