Files
jekyll/script/default-site
2016-07-28 10:43:46 -04:00

13 lines
245 B
Bash
Executable File

#!/usr/bin/env bash
# Runs the `jekyll new` command and builds the default site as a sanity check
set -e
mkdir -p ./tmp
rm -Rf ./tmp/default-site
bundle exec jekyll new tmp/default-site
cd tmp/default-site
bundle exec jekyll build --verbose