We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 82f597c commit 29afb81Copy full SHA for 29afb81
cli/cli.go
@@ -11,7 +11,7 @@ import (
11
12
const (
13
AppName = "dockward"
14
- Version = "0.0.2"
+ Version = "0.0.3"
15
Usage = `Usage: dockward [options...] <port> [<container port> <filter>] [endpoints...]
16
try 'dockward --help' for more.
17
`
@@ -79,7 +79,7 @@ func parseCli() cliConf {
79
exit(nil)
80
}
81
if conf.Version {
82
- fmt.Println("dockward version", Version)
+ fmt.Println(AppName, "version", Version)
83
84
85
0 commit comments