@@ -15,7 +15,7 @@ class CLI::Local < Thor
15
15
include Thor ::Actions
16
16
include CLI ::Helpers
17
17
18
- desc "accounts" , "List locally backed-up accounts"
18
+ desc "accounts [OPTIONS] " , "List locally backed-up accounts"
19
19
config_option
20
20
format_option
21
21
quiet_option
@@ -34,7 +34,7 @@ def accounts
34
34
end
35
35
36
36
desc (
37
- "check" ,
37
+ "check [OPTIONS] " ,
38
38
"Check the integrity of backups for all accounts (or the selected account(s))"
39
39
)
40
40
method_option (
@@ -54,7 +54,7 @@ def check
54
54
Check . new ( non_logging_options ) . run
55
55
end
56
56
57
- desc "folders EMAIL" , "List backed up folders"
57
+ desc "folders EMAIL [OPTIONS] " , "List backed up folders"
58
58
config_option
59
59
format_option
60
60
quiet_option
@@ -76,7 +76,7 @@ def folders(email)
76
76
end
77
77
end
78
78
79
- desc "list EMAIL FOLDER" , "List emails in a folder"
79
+ desc "list EMAIL FOLDER [OPTIONS] " , "List emails in a folder"
80
80
config_option
81
81
format_option
82
82
quiet_option
@@ -101,7 +101,7 @@ def list(email, folder_name)
101
101
end
102
102
end
103
103
104
- desc "show EMAIL FOLDER UID[,UID]" , "Show one or more emails"
104
+ desc "show EMAIL FOLDER UID[,UID] [OPTIONS] " , "Show one or more emails"
105
105
long_desc <<~DESC
106
106
Prints out the requested emails.
107
107
If more than one UID is given, they are separated by a header indicating
0 commit comments