seaweedfs/go/weed/version.go

25 lines
459 B
Go
Raw Normal View History

package main
import (
"fmt"
"runtime"
"github.com/chrislusf/seaweedfs/go/util"
)
var cmdVersion = &Command{
Run: runVersion,
UsageLine: "version",
2014-09-21 04:18:26 +00:00
Short: "print Seaweed File System version",
Long: `Version prints the Seaweed File System 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
}