Skip to content

Commit 5d174fe

Browse files
committed
Use 'bundle exec' to run jekyll/htmlproof
Signed-off-by: John Else <[email protected]>
1 parent 6c40a78 commit 5d174fe

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.travis-ci.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
TEST_BASEURL="baseurl_travis_test"
22

33
echo "Running jekyll's sanity test..."
4-
jekyll doctor
4+
bundle exec jekyll doctor
55

66
echo "Building site (with modified baseurl)..."
77
cp _config.yml test_config.yml
88
echo "baseurl: /${TEST_BASEURL}" >> test_config.yml
9-
jekyll build --config test_config.yml
9+
bundle exec jekyll build --config test_config.yml
1010
rm test_config.yml
1111

1212
echo "Running htmlproof over generated site..."
1313
mv _site ${TEST_BASEURL}
1414
mkdir _site
1515
mv ${TEST_BASEURL} _site
1616
export NOKOGIRI_USE_SYSTEM_LIBRARIES=true # speeds up install of html-proofer
17-
htmlproof --check-html ./_site
17+
bundle exec htmlproof --check-html ./_site

0 commit comments

Comments
 (0)