summaryrefslogtreecommitdiff
path: root/comitium.go
diff options
context:
space:
mode:
authornytpu <alex@nytpu.com>2021-03-18 13:48:26 -0600
committernytpu <alex@nytpu.com>2021-03-18 13:48:26 -0600
commita80d3f29ff0b76cea00672f24c408695ac8957d6 (patch)
tree20592a251342cfef81ad6532d5ea2a41811e66d2 /comitium.go
parent326edc97c5b20ba0fed5a7d770d8fd61d0215ed3 (diff)
add flag for number of refresh workers
Diffstat (limited to 'comitium.go')
-rw-r--r--comitium.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/comitium.go b/comitium.go
index 3c092d1..5129b70 100644
--- a/comitium.go
+++ b/comitium.go
@@ -161,8 +161,8 @@ func usage() {
fmt.Fprintf(os.Stderr, "\nGlobal Flags:\n%v", globalFs.FlagUsages())
// command-specific flags should be printed here
- fmt.Fprintf(os.Stderr, "Flags for \"add\":\n%v\n", commands["add"].FlagUsages())
+ fmt.Fprintf(os.Stderr, "Flags for \"add\":\n%v", commands["add"].FlagUsages())
+ fmt.Fprintf(os.Stderr, "Flags for \"refresh\":\n%v\n", commands["refresh"].FlagUsages())
- //fmt.Fprintf(os.Stderr, "To see specific details for a command, run \"%v <command> -h\"\n", os.Args[0])
fmt.Fprint(os.Stderr, "For more help, see comitium(1).\n")
}