mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00

- Call `Homebrew.install_bundler_gems!` as early as possible - Always call `Homebrew.install_bundler_gems!` in `dev-cmd` rather than in `Library/Homebrew` helpers method (to ensure we don't accidentally call this for non-dev-cmd commands)
42 lines
1.0 KiB
Ruby
42 lines
1.0 KiB
Ruby
# typed: strict
|
|
# frozen_string_literal: true
|
|
|
|
require "abstract_command"
|
|
require "formula"
|
|
require "completions"
|
|
require "manpages"
|
|
require "system_command"
|
|
|
|
module Homebrew
|
|
module DevCmd
|
|
class GenerateManCompletions < AbstractCommand
|
|
include SystemCommand::Mixin
|
|
|
|
cmd_args do
|
|
description <<~EOS
|
|
Generate Homebrew's manpages and shell completions.
|
|
EOS
|
|
named_args :none
|
|
end
|
|
|
|
sig { override.void }
|
|
def run
|
|
Homebrew.install_bundler_gems!(groups: ["man"])
|
|
|
|
Commands.rebuild_internal_commands_completion_list
|
|
Manpages.regenerate_man_pages(quiet: args.quiet?)
|
|
Completions.update_shell_completions!
|
|
|
|
diff = system_command "git", args: [
|
|
"-C", HOMEBREW_REPOSITORY, "diff", "--exit-code", "docs/Manpage.md", "manpages", "completions"
|
|
]
|
|
if diff.status.success?
|
|
ofail "No changes to manpage or completions."
|
|
else
|
|
puts "Manpage and completions updated."
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|