2
0
Derivar 0

Set bundle config in local file, and set path (#14351)

Este cometimento está contido em:
David Cook 2020-07-18 12:00:59 -05:00 cometido por GitHub
ascendente 98f6380dee
cometimento f2d977914e
Não foi encontrada uma chave conhecida para esta assinatura, na base de dados
ID da chave GPG: 4AEE18F83AFDEB23
1 ficheiros modificados com 6 adições e 5 eliminações

Ver ficheiro

@ -72,11 +72,12 @@ aliases:
- run:
name: Set bundler settings
command: |
bundle config clean 'true'
bundle config deployment 'true'
bundle config with 'pam_authentication'
bundle config without 'development production'
bundle config frozen 'true'
bundle config --local clean 'true'
bundle config --local deployment 'true'
bundle config --local with 'pam_authentication'
bundle config --local without 'development production'
bundle config --local frozen 'true'
bundle config --local path $BUNDLE_PATH
- run:
name: Install bundler dependencies
command: bundle check || (bundle install && bundle clean)