add newline after command name

This commit is contained in:
gutmet 2018-12-09 10:06:27 +01:00
parent d1f435a436
commit 72de932c7e

View File

@ -176,6 +176,7 @@ type commandCollection map[string]Command
func UsageAndExit(cmds commandCollection) {
fmt.Println(os.Args[0])
fmt.Println()
fmt.Println("Possible commands:")
for _, cmd := range cmds {
fmt.Println(" " + cmd.cmd)