aboutsummaryrefslogtreecommitdiff
path: root/weed/command/version.go
blob: fdde081ad5d9936851e935c60d695f7ff942fb15 (plain)
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
package command

import (
	"fmt"
	"github.com/seaweedfs/seaweedfs/weed/util/version"
	"runtime"
)

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", version.Version(), runtime.GOOS, runtime.GOARCH)
	println()
	println("For enterprise users, please visit https://seaweedfs.com for SeaweedFS Enterprise Edition,")
	println("which has a self-healing storage format with better data protection.")
	return true
}