mirror of
https://github.com/pry/pry.git
synced 2022-11-09 12:35:05 -05:00
fixed Rakefile path for pushgems task
This commit is contained in:
parent
676cf20365
commit
bbcf802538
1 changed files with 1 additions and 2 deletions
3
Rakefile
3
Rakefile
|
@ -81,7 +81,6 @@ namespace :jruby do
|
|||
end
|
||||
end
|
||||
|
||||
|
||||
desc "build all platform gems at once"
|
||||
task :gems => [:clean, :rmgems, "ruby:gem", "jruby:gem", "mswin32:gem", "mingw32:gem"]
|
||||
|
||||
|
@ -90,7 +89,7 @@ task :rmgems => ["ruby:clobber_package"]
|
|||
|
||||
desc "build and push latest gems"
|
||||
task :pushgems => :gems do
|
||||
chdir("#{direc}/pkg") do
|
||||
chdir("#{File.dirname(__FILE__)}/pkg") do
|
||||
Dir["*.gem"].each do |gemfile|
|
||||
sh "gem push #{gemfile}"
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue