brew/Library/Homebrew/cmd/config.rb
Mike McQuaid 9e7b8c61a9 Make config command cross-platform.
Closes #168.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2016-05-08 16:51:22 +01:00

13 lines
295 B
Ruby

#: * `config`:
#: Show Homebrew and system configuration useful for debugging. If you file
#: a bug report, you will likely be asked for this information if you do not
#: provide it.
require "system_config"
module Homebrew
def config
SystemConfig.dump_verbose_config
end
end