brew/Library/Homebrew/cmd/config.rb

26 lines
530 B
Ruby
Raw Normal View History

2023-08-08 13:54:59 -07:00
# typed: strict
# frozen_string_literal: true
2024-03-29 16:31:23 -07:00
require "abstract_command"
require "system_config"
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
end