Merge pull request #18811 from gromgit/brew-branch

system_config: print brew branch
This commit is contained in:
Mike McQuaid 2024-11-25 15:17:04 +00:00 committed by GitHub
commit 666601f401
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -34,6 +34,11 @@ module SystemConfig
GitRepository.new(HOMEBREW_REPOSITORY)
end
sig { returns(String) }
def branch
homebrew_repo.branch_name || "(none)"
end
sig { returns(String) }
def head
homebrew_repo.head_ref || "(none)"
@ -142,6 +147,7 @@ module SystemConfig
out.puts "ORIGIN: #{origin}"
out.puts "HEAD: #{head}"
out.puts "Last commit: #{last_commit}"
out.puts "Branch: #{branch}"
end
def homebrew_env_config(out = $stdout)