mirror of https://github.com/docker/docs.git
Merge pull request #517 from ehazlett/fix-cli-author
fixes the "unknown" author in the cli help
This commit is contained in:
commit
1985c0e22c
2
main.go
2
main.go
|
@ -20,6 +20,8 @@ func main() {
|
||||||
|
|
||||||
app := cli.NewApp()
|
app := cli.NewApp()
|
||||||
app.Name = path.Base(os.Args[0])
|
app.Name = path.Base(os.Args[0])
|
||||||
|
app.Author = "Docker Machine Contributors"
|
||||||
|
app.Email = "https://github.com/docker/machine"
|
||||||
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