[rubygems/rubygems] Add missing `rubygem_push` prerequisite

Just like all the other tasks using the `built_gem_path`, the `:build`
task is a prerequisite for this task too.

https://github.com/rubygems/rubygems/commit/d193f9a7f9
This commit is contained in:
David Rodríguez 2021-09-23 11:54:09 +02:00 коммит произвёл Hiroshi SHIBATA
Родитель f360ebb306
Коммит 6874d4f116
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -76,7 +76,7 @@ module Bundler
tag_version { git_push(args[:remote]) } unless already_tagged?
end
task "release:rubygem_push" do
task "release:rubygem_push" => "build" do
rubygem_push(built_gem_path) if gem_push?
end