diff options
Diffstat (limited to 'gdrive.go')
| -rw-r--r-- | gdrive.go | 9 | 
1 files changed, 7 insertions, 2 deletions
| @@ -339,10 +339,15 @@ func main() {              Callback: printHelp,          },          &cli.Handler{ -            Pattern: "help <subcommand>", -            Description: "Print subcommand help", +            Pattern: "help <command>", +            Description: "Print command help",              Callback: printCommandHelp,          }, +        &cli.Handler{ +            Pattern: "help <command> <subcommand>", +            Description: "Print subcommand help", +            Callback: printSubCommandHelp, +        },      }      cli.SetHandlers(handlers) | 
