15 lines
232 B
Ruby
15 lines
232 B
Ruby
# typed: false
|
|
# frozen_string_literal: true
|
|
|
|
module Homebrew
|
|
extend T::Sig
|
|
|
|
module_function
|
|
|
|
def git_tags
|
|
tags = generic_git_tags
|
|
tags = Utils.popen_read("git tag --list | sort -rV") if tags.blank?
|
|
tags
|
|
end
|
|
end
|