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

Merge pull request #20992 from JuanitoFatas/fix/bin-setup-script

Don't fail when checking dependencies in bin/setup script
This commit is contained in:
Yves Senn 2015-07-31 15:26:12 +02:00
commit 5ca385cb4e

View file

@ -15,7 +15,7 @@ chdir APP_ROOT do
puts '== Installing dependencies =='
system! 'gem install bundler --conservative'
system!('bundle check') or system!('bundle install')
system('bundle check') or system!('bundle install')
# puts "\n== Copying sample files =="
# unless File.exist?('config/database.yml')