add flag for number of refresh workers

This commit is contained in:
nytpu
2021-03-18 13:48:26 -06:00
parent 326edc97c5
commit a80d3f29ff
2 changed files with 11 additions and 4 deletions
+2 -2
View File
@@ -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")
}