File tree Expand file tree Collapse file tree 4 files changed +9
-3
lines changed Expand file tree Collapse file tree 4 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,9 @@ bash .travis/install-openjdk.sh $OPENJDK_VERSION
15
15
16
16
if travis_isLinux; then
17
17
gem install bundler
18
- bundle install --with=release_notes_preprocessing --path=vendor/bundle
18
+ bundle config set --local path vendor/bundle
19
+ bundle config set --local with release_notes_preprocessing
20
+ bundle install
19
21
else
20
22
log_info " Not setting up ruby for ${TRAVIS_OS_NAME} ."
21
23
exit 0
Original file line number Diff line number Diff line change @@ -88,6 +88,7 @@ function generate_jekyll_doc() {
88
88
89
89
echo -e " \n\n"
90
90
log_info " Building documentation using jekyll..."
91
+ bundle config set --local path vendor/bundle
91
92
bundle install
92
93
bundle exec jekyll build
93
94
Original file line number Diff line number Diff line change @@ -122,7 +122,9 @@ echo "Press enter to continue..."
122
122
read
123
123
124
124
# install bundles needed for rendering release notes
125
- bundle install --with=release_notes_preprocessing --path vendor/bundle
125
+ bundle config set --local path vendor/bundle
126
+ bundle config set --local with release_notes_preprocessing
127
+ bundle install
126
128
127
129
export RELEASE_NOTES_POST=" _posts/$( date -u +%Y-%m-%d) -PMD-${RELEASE_VERSION} .md"
128
130
echo " Generating ../pmd.github.io/${RELEASE_NOTES_POST} ..."
Original file line number Diff line number Diff line change 1
- bundle install --path vendor/bundle
1
+ bundle config set --local path vendor/bundle
2
+ bundle install
2
3
bundle update
3
4
bundle exec jekyll build
You can’t perform that action at this time.
0 commit comments