mirror of
https://github.com/jekyll/jekyll.git
synced 2026-01-29 00:38:03 -05:00
14 lines
260 B
Bash
Executable File
14 lines
260 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 install
|
|
bundle exec jekyll build --verbose
|