mirror of https://github.com/docker/docs.git
Merge pull request #292 from radeksimko/bin_name_fix
Use actual binary name instead of hardcoding it
This commit is contained in:
commit
29c1eb9080
2
main.go
2
main.go
|
|
@ -16,7 +16,7 @@ func main() {
|
||||||
}
|
}
|
||||||
|
|
||||||
app := cli.NewApp()
|
app := cli.NewApp()
|
||||||
app.Name = "machine"
|
app.Name = os.Args[0]
|
||||||
app.Commands = Commands
|
app.Commands = Commands
|
||||||
app.CommandNotFound = cmdNotFound
|
app.CommandNotFound = cmdNotFound
|
||||||
app.Usage = "Create and manage machines running Docker."
|
app.Usage = "Create and manage machines running Docker."
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue