File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed
Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,8 @@ pipeline {
2626 rvm use 3.4.1@earthworks --create
2727 gem install bundler
2828
29- bundle install --without production
29+ bundle config set --without 'production'
30+ bundle install
3031
3132 # Deploy it
3233 bundle exec cap $DEPLOY_ENVIRONMENT deploy
@@ -70,7 +71,8 @@ pipeline {
7071 rvm use 3.4.1@earthworks --create
7172 gem install bundler
7273
73- bundle install --without production
74+ bundle config set --without 'production'
75+ bundle install
7476
7577 # Deploy it
7678 bundle exec cap $DEPLOY_ENVIRONMENT deploy
@@ -115,7 +117,8 @@ pipeline {
115117 rvm use 3.4.1@earthworks --create
116118 gem install bundler
117119
118- bundle install --without production
120+ bundle config set --without 'production'
121+ bundle install
119122
120123 # Deploy it
121124 bundle exec cap $DEPLOY_ENVIRONMENT deploy
You can’t perform that action at this time.
0 commit comments