Skip to content
Snippets Groups Projects
Unverified Commit e9274b38 authored by Dawid Dziurla's avatar Dawid Dziurla
Browse files

help: print cli/parser help message if used

parent d014d5a9
No related branches found
No related tags found
No related merge requests found
......@@ -94,7 +94,7 @@ begin
# - if cmd is Cask, let Cask handle the help command instead
if (empty_argv || help_flag) && cmd != "cask"
require "help"
Homebrew::Help.help cmd, empty_argv: empty_argv
Homebrew::Help.help cmd, empty_argv: empty_argv, internal_cmd: internal_cmd
# `Homebrew.help` never returns, except for external/unknown commands.
end
......
......@@ -72,6 +72,9 @@ module Homebrew
# Resume execution in `brew.rb` for unknown commands.
return if path.nil?
# Resume execution in `brew.rb` for external commands using "cli/parser".
return if !flags[:internal_cmd] && path.read.match?("require .cli/parser.")
# Display help for internal command (or generic help if undocumented).
puts command_help(path)
exit 0
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment