Show shortcut mappings in help screen [skip ci]

This commit is contained in:
2020-11-27 19:06:05 -08:00
parent dbd6a3162d
commit fb89448324
2 changed files with 3 additions and 3 deletions

View File

@@ -119,7 +119,7 @@ func main() {
// Displays help message if no arguments provided or -h/--help is passed
if len(args) == 0 || Contains(args, "-h") || Contains(args, "--help") || Contains(args, "help") {
printHelpMessage(packageManagerCommand, useRootBool, rootCommand, commands, shortcuts, isOverridden)
printHelpMessage(packageManagerCommand, useRootBool, rootCommand, commands, shortcuts, shortcutMappings, isOverridden)
os.Exit(0)
}