2023-02-09 22:06:26 +09:00
|
|
|
# typed: false
|
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Homebrew
|
|
|
|
extend T::Sig
|
|
|
|
|
|
|
|
module_function
|
|
|
|
|
2023-02-09 23:06:52 +09:00
|
|
|
def git_tags
|
|
|
|
tags = generic_git_tags
|
2023-02-09 22:06:26 +09:00
|
|
|
Utils.popen_read("git tag --list | sort -rV") if tags.blank?
|
|
|
|
end
|
|
|
|
end
|