Update version output
This commit is contained in:
parent
004f6ef0a2
commit
b7887ed162
|
@ -86,13 +86,22 @@ func setupViper() {
|
||||||
viper.AddConfigPath(".")
|
viper.AddConfigPath(".")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func printVersion() {
|
||||||
|
if version == "" {
|
||||||
|
fmt.Println("filemanager is at an untracked version")
|
||||||
|
} else {
|
||||||
|
fmt.Println("filemanager", version)
|
||||||
|
}
|
||||||
|
|
||||||
|
os.Exit(0)
|
||||||
|
}
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
setupViper()
|
setupViper()
|
||||||
flag.Parse()
|
flag.Parse()
|
||||||
|
|
||||||
if showVer {
|
if showVer {
|
||||||
fmt.Println("filemanager version", version)
|
printVersion()
|
||||||
os.Exit(0)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Add a configuration file if set.
|
// Add a configuration file if set.
|
||||||
|
|
Loading…
Reference in New Issue