Merge pull request #292 from radeksimko/bin_name_fix

Use actual binary name instead of hardcoding it
This commit is contained in:
Evan Hazlett 2015-01-22 12:44:26 -05:00
commit 29c1eb9080
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ func main() {
}
app := cli.NewApp()
app.Name = "machine"
app.Name = os.Args[0]
app.Commands = Commands
app.CommandNotFound = cmdNotFound
app.Usage = "Create and manage machines running Docker."