You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
434 B
26 lines
434 B
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"runtime"
|
|
)
|
|
|
|
const (
|
|
VERSION = "0.43"
|
|
)
|
|
|
|
var cmdVersion = &Command{
|
|
Run: runVersion,
|
|
UsageLine: "version",
|
|
Short: "print Weed File System version",
|
|
Long: `Version prints the Weed File System version`,
|
|
}
|
|
|
|
func runVersion(cmd *Command, args []string) bool {
|
|
if len(args) != 0 {
|
|
cmd.Usage()
|
|
}
|
|
|
|
fmt.Printf("version %s %s %s\n", VERSION, runtime.GOOS, runtime.GOARCH)
|
|
return true
|
|
}
|