1
0
Fork 0
mirror of https://github.com/chrislusf/seaweedfs synced 2024-06-21 01:52:50 +02:00
seaweedfs/weed/command/version.go
Chris Lu 5ce6bbf076 directory structure change to work with glide
glide has its own requirements. My previous workaround caused me some
code checkin errors. Need to fix this.
2016-06-02 18:09:14 -07:00

25 lines
444 B
Go

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()
}
fmt.Printf("version %s %s %s\n", util.VERSION, runtime.GOOS, runtime.GOARCH)
return true
}