20875c972e
* Discard package "version" Signed-off-by: m.nabokikh <maksim.nabokikh@flant.com> * Inject api version Signed-off-by: m.nabokikh <maksim.nabokikh@flant.com> * Pass version arg to the dex API Signed-off-by: m.nabokikh <maksim.nabokikh@flant.com>
27 lines
422 B
Go
27 lines
422 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"runtime"
|
|
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var version = "DEV"
|
|
|
|
func commandVersion() *cobra.Command {
|
|
return &cobra.Command{
|
|
Use: "version",
|
|
Short: "Print the version and exit",
|
|
Run: func(_ *cobra.Command, _ []string) {
|
|
fmt.Printf(
|
|
"Dex Version: %s\nGo Version: %s\nGo OS/ARCH: %s %s\n",
|
|
version,
|
|
runtime.Version(),
|
|
runtime.GOOS,
|
|
runtime.GOARCH,
|
|
)
|
|
},
|
|
}
|
|
}
|