fix: redefined -v flag (#580)
Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com>
This commit is contained in:
parent
9b918839b8
commit
2271527d81
|
@ -294,7 +294,7 @@ Huawei Options:
|
||||||
Common Options:
|
Common Options:
|
||||||
--topic <topic> iOS or Android topic message
|
--topic <topic> iOS or Android topic message
|
||||||
-h, --help Show this message
|
-h, --help Show this message
|
||||||
-v, --version Show version
|
-V, --version Show version
|
||||||
```
|
```
|
||||||
|
|
||||||
### Send Android notification
|
### Send Android notification
|
||||||
|
|
4
main.go
4
main.go
|
@ -54,7 +54,7 @@ func main() {
|
||||||
)
|
)
|
||||||
|
|
||||||
flag.BoolVar(&showVersion, "version", false, "Print version information.")
|
flag.BoolVar(&showVersion, "version", false, "Print version information.")
|
||||||
flag.BoolVar(&showVersion, "v", false, "Print version information.")
|
flag.BoolVar(&showVersion, "V", false, "Print version information.")
|
||||||
flag.StringVar(&configFile, "c", "", "Configuration file path.")
|
flag.StringVar(&configFile, "c", "", "Configuration file path.")
|
||||||
flag.StringVar(&configFile, "config", "", "Configuration file path.")
|
flag.StringVar(&configFile, "config", "", "Configuration file path.")
|
||||||
flag.StringVar(&opts.Core.PID.Path, "pid", "", "PID file path.")
|
flag.StringVar(&opts.Core.PID.Path, "pid", "", "PID file path.")
|
||||||
|
@ -406,7 +406,7 @@ Huawei Options:
|
||||||
Common Options:
|
Common Options:
|
||||||
--topic <topic> iOS, Android or Huawei topic message
|
--topic <topic> iOS, Android or Huawei topic message
|
||||||
-h, --help Show this message
|
-h, --help Show this message
|
||||||
-v, --version Show version
|
-V, --version Show version
|
||||||
`
|
`
|
||||||
|
|
||||||
// usage will print out the flag options for the server.
|
// usage will print out the flag options for the server.
|
||||||
|
|
Loading…
Reference in New Issue