blob: c907bca3d6383831099ffc9951d440108cf66ccc (
plain) (
blame)
1
2
3
4
5
6
|
#!/usr/bin/env bash
set -e # halt script on error
# Build site, validate HTML
bundle exec jekyll build
bundle exec htmlproofer ./_site --checks 'Images,Scripts,Favicon,OpenGraph'
|