Enabled bundler multicore support (#529)

This commit is contained in:
Thomas Leister 2018-02-04 15:01:02 +01:00 committed by wxcafé
parent a5c81841ec
commit acaea9251f
1 changed files with 1 additions and 1 deletions

View File

@ -153,7 +153,7 @@ git checkout $(git tag -l | grep -v 'rc[0-9]*$' | sort -V | tail -n 1)
# Install bundler
gem install bundler
# Use bundler to install the rest of the Ruby dependencies
bundle install --deployment --without development test
bundle install -j$(getconf _NPROCESSORS_ONLN) --deployment --without development test
# Use yarn to install node.js dependencies
yarn install --pure-lockfile
```