mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00
14 lines
214 B
Ruby
14 lines
214 B
Ruby
![]() |
# typed: false
|
||
|
# frozen_string_literal: true
|
||
|
|
||
|
module Homebrew
|
||
|
extend T::Sig
|
||
|
|
||
|
module_function
|
||
|
|
||
|
def git_tag
|
||
|
tags = generic_git_tag
|
||
|
Utils.popen_read("git tag --list | sort -rV") if tags.blank?
|
||
|
end
|
||
|
end
|