Set bundle config in local file, and set path (#14351)
This commit is contained in:
parent
98f6380dee
commit
f2d977914e
1 changed files with 6 additions and 5 deletions
|
@ -72,11 +72,12 @@ aliases:
|
||||||
- run:
|
- run:
|
||||||
name: Set bundler settings
|
name: Set bundler settings
|
||||||
command: |
|
command: |
|
||||||
bundle config clean 'true'
|
bundle config --local clean 'true'
|
||||||
bundle config deployment 'true'
|
bundle config --local deployment 'true'
|
||||||
bundle config with 'pam_authentication'
|
bundle config --local with 'pam_authentication'
|
||||||
bundle config without 'development production'
|
bundle config --local without 'development production'
|
||||||
bundle config frozen 'true'
|
bundle config --local frozen 'true'
|
||||||
|
bundle config --local path $BUNDLE_PATH
|
||||||
- run:
|
- run:
|
||||||
name: Install bundler dependencies
|
name: Install bundler dependencies
|
||||||
command: bundle check || (bundle install && bundle clean)
|
command: bundle check || (bundle install && bundle clean)
|
||||||
|
|
Loading…
Reference in a new issue