Skip to content

Commit

Permalink
Added force to bundle install clean
Browse files Browse the repository at this point in the history
This a fix to get compliant with bundle 1.16+
  • Loading branch information
cpitkin authored Jan 22, 2020
1 parent b35ed60 commit b67aad0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vars/railsInstallDepsDocker.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ def call(Map config) {
stage('Install Dependancies') {
milestone label: 'Install Dependancies'
retry(2) {
sh "${config.container} bundle install --quiet --clean --jobs=4"
sh "${config.container} bundle install --quiet --clean --force --jobs=4"
}
currentBuild.result = 'SUCCESS'
}
Expand Down

0 comments on commit b67aad0

Please sign in to comment.