mirror of
https://github.com/jekyll/jekyll.git
synced 2026-01-12 16:38:37 -05:00
13 lines
131 B
Bash
Executable File
13 lines
131 B
Bash
Executable File
#! /bin/bash
|
|
|
|
script/branding
|
|
|
|
set -e
|
|
|
|
if test -z "$TEST_SUITE"; then
|
|
script/test
|
|
script/cucumber
|
|
else
|
|
script/$TEST_SUITE
|
|
fi
|