seaweedfs/weed/command/version.go

25 lines
446 B
Go
Raw Normal View History

package command
import (
"fmt"
"runtime"
"github.com/chrislusf/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()
}
2020-06-02 07:10:35 +00:00
fmt.Printf("version %s %s %s\n", util.Version(), runtime.GOOS, runtime.GOARCH)
return true
}