mirror of https://github.com/docker/docs.git
Merge pull request #393 from radeksimko/rsimko-bin-basepath
Use binary file name instead of full path
This commit is contained in:
commit
e150a93cc5
3
main.go
3
main.go
|
@ -2,6 +2,7 @@ package main
|
|||
|
||||
import (
|
||||
"os"
|
||||
"path"
|
||||
|
||||
log "github.com/Sirupsen/logrus"
|
||||
"github.com/codegangsta/cli"
|
||||
|
@ -16,7 +17,7 @@ func main() {
|
|||
}
|
||||
|
||||
app := cli.NewApp()
|
||||
app.Name = os.Args[0]
|
||||
app.Name = path.Base(os.Args[0])
|
||||
app.Commands = Commands
|
||||
app.CommandNotFound = cmdNotFound
|
||||
app.Usage = "Create and manage machines running Docker."
|
||||
|
|
Loading…
Reference in New Issue