diff options
author | Maximilian Meister <mmeister@suse.de> | 2017-08-11 19:29:05 +0800 |
---|---|---|
committer | Felix Lange <fjl@users.noreply.github.com> | 2017-08-11 19:29:05 +0800 |
commit | 2b422b1a47e9b2a0f3d7ecf7063eef2e59cc082e (patch) | |
tree | fe732b8be4c6ec4fb11ed78078b54144fcb4affc /vendor/gopkg.in/urfave/cli.v1/cli.go | |
parent | 73c5aba21fcca1bf1f78e94d88920fde6762be9e (diff) | |
download | go-tangerine-2b422b1a47e9b2a0f3d7ecf7063eef2e59cc082e.tar go-tangerine-2b422b1a47e9b2a0f3d7ecf7063eef2e59cc082e.tar.gz go-tangerine-2b422b1a47e9b2a0f3d7ecf7063eef2e59cc082e.tar.bz2 go-tangerine-2b422b1a47e9b2a0f3d7ecf7063eef2e59cc082e.tar.lz go-tangerine-2b422b1a47e9b2a0f3d7ecf7063eef2e59cc082e.tar.xz go-tangerine-2b422b1a47e9b2a0f3d7ecf7063eef2e59cc082e.tar.zst go-tangerine-2b422b1a47e9b2a0f3d7ecf7063eef2e59cc082e.zip |
cmd/geth, cmd/swarm: sort commands and flags by name (#3462)
Diffstat (limited to 'vendor/gopkg.in/urfave/cli.v1/cli.go')
-rw-r--r-- | vendor/gopkg.in/urfave/cli.v1/cli.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/vendor/gopkg.in/urfave/cli.v1/cli.go b/vendor/gopkg.in/urfave/cli.v1/cli.go index 74fd101f4..90c07eb8e 100644 --- a/vendor/gopkg.in/urfave/cli.v1/cli.go +++ b/vendor/gopkg.in/urfave/cli.v1/cli.go @@ -12,6 +12,7 @@ // app.Usage = "say a greeting" // app.Action = func(c *cli.Context) error { // println("Greetings") +// return nil // } // // app.Run(os.Args) |