1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
|
package version
import (
"fmt"
"github.com/ghjm/cmdline"
"github.com/spf13/viper"
)
// Version is receptor app version.
var Version string
// cmdlineCfg is a cmdline-compatible struct for a --version command.
type cmdlineCfg struct{}
// Run runs the action.
func (cfg cmdlineCfg) Run() error {
validateVersion()
fmt.Printf("%s\n", Version)
return nil
}
func init() {
version := viper.GetInt("version")
if version > 1 {
return
}
cmdline.RegisterConfigTypeForApp("receptor-version",
"version", "Displays the Receptor version.", cmdlineCfg{}, cmdline.Exclusive)
}
func validateVersion() string {
if Version == "" {
return "Version unknown"
} else {
return Version
}
}
|