mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00
14 lines
388 B
Ruby
14 lines
388 B
Ruby
![]() |
HBC_VERSION = "0.60.0".freeze
|
||
|
|
||
|
module Hbc
|
||
|
def self.full_version
|
||
|
@full_version ||= begin
|
||
|
revision, commit = Dir.chdir(Hbc.default_tap.path) do
|
||
|
[`git rev-parse --short=4 --verify -q HEAD 2>/dev/null`.chomp,
|
||
|
`git show -s --format="%cr" HEAD 2>/dev/null`.chomp]
|
||
|
end
|
||
|
"#{HBC_VERSION} (git revision #{revision}; last commit #{commit})"
|
||
|
end
|
||
|
end
|
||
|
end
|