mirror of
https://github.com/jekyll/jekyll.git
synced 2026-01-12 16:38:37 -05:00
20 lines
254 B
Bash
Executable File
20 lines
254 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
script/branding
|
|
|
|
set -e
|
|
|
|
if [[ -z "$TEST_SUITE" ]]
|
|
then
|
|
script/fmt
|
|
script/test ci
|
|
script/cucumber
|
|
script/default-site
|
|
elif [[ -x "script/$TEST_SUITE" ]]
|
|
then
|
|
script/$TEST_SUITE
|
|
else
|
|
echo "Unknown test suite."
|
|
exit 1
|
|
fi
|