seaweedfs/weed/command/version.go
2019-09-02 11:28:40 +01:00

25 lines
442 B
Go

package command
import (
"fmt"
"runtime"
"github.com/joeslay/seaweedfs/weed/util"
)
var cmdVersion = &Command{
Run: runVersion,
UsageLine: "version",
Short: "print SeaweedFS version",
Long: `Version prints the SeaweedFS version`,
}
func runVersion(cmd *Command, args []string) bool {
if len(args) != 0 {
cmd.Usage()
}
fmt.Printf("version %s %s %s\n", util.VERSION, runtime.GOOS, runtime.GOARCH)
return true
}