Skip to content

Commit dc9709d

Browse files
authored
Merge pull request #1570 from sul-dlss/bundler-flag
Stop using 'without' bundler flag
2 parents 44c12e3 + 860cac0 commit dc9709d

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

Jenkinsfile

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)