We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4cb06a5 commit e524e8cCopy full SHA for e524e8c
cmd/root.go
@@ -423,11 +423,13 @@ fmt.Println("Available Commands:")
423
}
424
425
for title, commands := range group {
426
- fmt.Printf("\n%s\n", title)
427
- for _, c := range commands {
428
- fmt.Printf(" %-22s %s\n", c.Use, c.Short)
429
- }
+ fmt.Printf("\n%s\n", title)
+ for _, c := range commands {
+ fmt.Printf(" %-22s %s\n", c.Use, c.Short)
430
+}
431
+
432
+fmt.Println()
433
+fmt.Println("Use \"stackroost [command] --help\" for more information about a command.")
434
- fmt.Println("\nUse \"stackroost [command] --help\" for more information about a command.\n")
435
0 commit comments