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:
commit
5ca385cb4e
1 changed files with 1 additions and 1 deletions
|
@ -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')
|
||||
|
|
Loading…
Reference in a new issue