Skip to content

Commit f11b4c4

Browse files
authored
Merge pull request #1525 from pod4lib/bundler
Stop using 'without' bundler flag
2 parents 8c0e4c7 + 00fa930 commit f11b4c4

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

Jenkinsfile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@ pipeline {
2727
rvm use 3.4.1@pod --create
2828
gem install bundler
2929
30-
bundle install --without production
30+
bundle config set without 'production'
31+
bundle install
3132
3233
# Deploy it
3334
bundle exec cap $DEPLOY_ENVIRONMENT deploy
@@ -72,7 +73,8 @@ pipeline {
7273
rvm use 3.4.1@pod --create
7374
gem install bundler
7475
75-
bundle install --without production
76+
bundle config set without 'production'
77+
bundle install
7678
7779
# Deploy it
7880
bundle exec cap $DEPLOY_ENVIRONMENT deploy

0 commit comments

Comments
 (0)