Fix bundle config commands (#766)

This commit is contained in:
Lerk 2020-04-21 22:09:55 +02:00 committed by GitHub
parent 2cfe57c426
commit bd38c1a487
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -138,8 +138,8 @@ git checkout $(git tag -l | grep -v 'rc[0-9]*$' | sort -V | tail -n 1)
Now to install Ruby and JavaScript dependencies:
```bash
bundle config set deployment 'true'
bundle config set without 'development test'
bundle config deployment 'true'
bundle config without 'development test'
bundle install -j$(getconf _NPROCESSORS_ONLN)
yarn install --pure-lockfile
```