6 lines
108 B
Text
6 lines
108 B
Text
|
#!/usr/bin/env bash
|
||
|
set -e # halt script on error
|
||
|
|
||
|
bundle exec jekyll build
|
||
|
bundle exec htmlproofer ./_site
|