2023-08-08 13:54:59 -07:00
|
|
|
# typed: strict
|
2019-04-19 15:38:03 +09:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2024-03-29 16:31:23 -07:00
|
|
|
require "abstract_command"
|
2016-04-25 18:01:15 +01:00
|
|
|
require "system_config"
|
2010-09-11 20:22:54 +01:00
|
|
|
|
2014-06-18 22:41:47 -05:00
|
|
|
module Homebrew
|
2024-03-29 16:31:23 -07:00
|
|
|
module Cmd
|
|
|
|
class Config < AbstractCommand
|
|
|
|
cmd_args do
|
|
|
|
description <<~EOS
|
|
|
|
Show Homebrew and system configuration info useful for debugging. If you file
|
|
|
|
a bug report, you will be required to provide this information.
|
|
|
|
EOS
|
2016-09-26 01:44:51 +02:00
|
|
|
|
2024-03-29 16:31:23 -07:00
|
|
|
named_args :none
|
|
|
|
end
|
2020-07-30 18:40:10 +02:00
|
|
|
|
2024-03-29 16:31:23 -07:00
|
|
|
sig { override.void }
|
|
|
|
def run
|
|
|
|
SystemConfig.dump_verbose_config
|
|
|
|
end
|
2019-01-20 21:29:19 +05:30
|
|
|
end
|
|
|
|
end
|
2010-09-11 20:22:54 +01:00
|
|
|
end
|