We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c40a78 commit 5d174feCopy full SHA for 5d174fe
.travis-ci.sh
@@ -1,17 +1,17 @@
1
TEST_BASEURL="baseurl_travis_test"
2
3
echo "Running jekyll's sanity test..."
4
-jekyll doctor
+bundle exec jekyll doctor
5
6
echo "Building site (with modified baseurl)..."
7
cp _config.yml test_config.yml
8
echo "baseurl: /${TEST_BASEURL}" >> test_config.yml
9
-jekyll build --config test_config.yml
+bundle exec jekyll build --config test_config.yml
10
rm test_config.yml
11
12
echo "Running htmlproof over generated site..."
13
mv _site ${TEST_BASEURL}
14
mkdir _site
15
mv ${TEST_BASEURL} _site
16
export NOKOGIRI_USE_SYSTEM_LIBRARIES=true # speeds up install of html-proofer
17
-htmlproof --check-html ./_site
+bundle exec htmlproof --check-html ./_site
0 commit comments