Browse Source

Print version info to Stdout instead of Stderr

Otherwise we can't get the right version information by this:
```shell
gost -V | cut -d' ' -f2
```
pull/549/head
Raymond Liu 6 years ago
committed by ginuerzh
parent
commit
8ab2fe6f77
  1. 2
      cmd/gost/main.go

2
cmd/gost/main.go

@ -40,7 +40,7 @@ func init() {
flag.Parse()
if printVersion {
fmt.Fprintf(os.Stderr, "gost %s (%s %s/%s)\n",
fmt.Fprintf(os.Stdout, "gost %s (%s %s/%s)\n",
gost.Version, runtime.Version(), runtime.GOOS, runtime.GOARCH)
os.Exit(0)
}

Loading…
Cancel
Save