mirror of
https://github.com/jekyll/jekyll.git
synced 2026-01-30 09:18:11 -05:00
13 lines
245 B
Bash
Executable File
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
|