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

Fix release script to allow pre release gems

This addition of `--pre` fixes the issue we were seeing when installing
a local copy of a pre-release rails version.
This commit is contained in:
eileencodes 2016-04-27 15:31:47 -05:00
parent 940124a226
commit ba907d6caa

View file

@ -56,7 +56,7 @@ directory "pkg"
task :build => [:clean, gem]
task :install => :build do
sh "gem install #{gem}"
sh "gem install --pre #{gem}"
end
task :push => :build do