diff options
author | Tulio Leao <tupaschoal@gmail.com> | 2020-04-09 16:26:26 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-09 16:26:26 -0300 |
commit | 3deec4cc48e3acac249db3d3c78c1d14af116c6a (patch) | |
tree | 57ff7c11ebcbdd356e7b81474358f978ea076b64 /script/run_jekyll.sh | |
parent | a748cd395ef1a9cb089650260766c9cbfdb6797d (diff) |
Speed up Travis CI and improve error reports (#467)
Diffstat (limited to 'script/run_jekyll.sh')
-rwxr-xr-x | script/run_jekyll.sh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/script/run_jekyll.sh b/script/run_jekyll.sh new file mode 100755 index 00000000..0bf5ccf1 --- /dev/null +++ b/script/run_jekyll.sh @@ -0,0 +1,6 @@ +#!/usr/bin/env bash +set -e # halt script on error + +# Build site, validate HTML +bundle exec jekyll build +bundle exec htmlproofer ./_site --checks-to-ignore 'LinkCheck' |