Skip to content
This repository has been archived by the owner on Sep 26, 2021. It is now read-only.

Commit

Permalink
Merge pull request #517 from ehazlett/fix-cli-author
Browse files Browse the repository at this point in the history
fixes the "unknown" author in the cli help
  • Loading branch information
ehazlett committed Feb 9, 2015
2 parents 8630591 + be0cddd commit 1985c0e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ func main() {

app := cli.NewApp()
app.Name = path.Base(os.Args[0])
app.Author = "Docker Machine Contributors"
app.Email = "https://github.com/docker/machine"
app.Commands = Commands
app.CommandNotFound = cmdNotFound
app.Usage = "Create and manage machines running Docker."
Expand Down

0 comments on commit 1985c0e

Please sign in to comment.