diff options
| author | Petter Rasmussen | 2016-01-24 23:20:37 +0100 |
|---|---|---|
| committer | Petter Rasmussen | 2016-01-24 23:20:37 +0100 |
| commit | 11f577b5dbe0429f206c80b674d666d44b3a79c2 (patch) | |
| tree | dccd3389393ffa80ea903ce0cde74a5b4d5b41dc | |
| parent | 625d65cd145a1c392a7c5a7968d738d8dc55c75b (diff) | |
| download | gdrive-11f577b5dbe0429f206c80b674d666d44b3a79c2.tar.bz2 | |
Change order of flags
| -rw-r--r-- | gdrive.go | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -110,17 +110,17 @@ func main() { Description: "Overwrite existing file", OmitValue: true, }, - cli.StringFlag{ - Name: "path", - Patterns: []string{"--path"}, - Description: "Download path", - }, cli.BoolFlag{ Name: "recursive", Patterns: []string{"-r", "--recursive"}, Description: "Download directory recursively, documents will be skipped", OmitValue: true, }, + cli.StringFlag{ + Name: "path", + Patterns: []string{"--path"}, + Description: "Download path", + }, cli.BoolFlag{ Name: "noProgress", Patterns: []string{"--no-progress"}, |
