1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

[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 committed by Hiroshi SHIBATA
parent f360ebb306
commit 6874d4f116

View file

@ -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