Merge pull request #7782 from rmNULL/show-help-for-aliased-cmd

show help for aliased commands
This commit is contained in:
Mike McQuaid 2020-06-23 13:40:39 +01:00 committed by GitHub
commit c23d0f575f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -58,6 +58,7 @@ begin
help_flag = true
elsif !cmd && !help_flag_list.include?(arg)
cmd = ARGV.delete_at(i)
cmd = Commands::HOMEBREW_INTERNAL_COMMAND_ALIASES.fetch(cmd, cmd)
end
end