Allow use of script/cibuild outside Travis. [ci skip]

This commit is contained in:
Parker Moore 2014-09-09 21:10:17 -07:00
parent 3994faaeaa
commit 80106f1b67
1 changed files with 9 additions and 1 deletions

View File

@ -1,4 +1,12 @@
#! /bin/bash
script/branding
script/$TEST_SUITE
set -e
if test -z "$TEST_SUITE"; then
script/test
script/cucumber
else
script/$TEST_SUITE
fi