From c239746363b3a4533132b3434673b9e00c1cd8e5 Mon Sep 17 00:00:00 2001 From: Parker Moore Date: Fri, 27 Jun 2014 17:10:06 -0400 Subject: [PATCH] Use bundle exec in CI guide. [ci skip] h/t @ndarville Ref: #2432 --- site/docs/continuous-integration.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/site/docs/continuous-integration.md b/site/docs/continuous-integration.md index 323921c7..2d2d7982 100644 --- a/site/docs/continuous-integration.md +++ b/site/docs/continuous-integration.md @@ -40,9 +40,10 @@ or write a Ruby script which utilizes the gem. {% highlight bash %} #!/usr/bin/env bash +set -e # halt script on error -jekyll build -htmlproof ./_site +bundle exec jekyll build +bundle exec htmlproof ./_site {% endhighlight %} Some options can be specified via command-line switches. Check out the