Files
jekyll/script/cibuild
AJ Acevedo b0fa2462a6 Updated the scripts shebang for portability
- Updated all of the sh and bash shebangs for consistency and portability.
- set -e to the test script for portability
Resolves #3857
2015-07-18 22:23:56 -04:00

16 lines
212 B
Bash
Executable File

#!/usr/bin/env bash
script/branding
if [[ -z "$TEST_SUITE" ]]
then
script/test ci
script/cucumber
elif [[ -x "script/$TEST_SUITE" ]]
then
script/$TEST_SUITE
else
echo "Unknown test suite."
exit 1
fi