summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorJonathan "Duke" Leto <jonathan@leto.net>2011-02-04 17:09:36 -0800
committerJonathan "Duke" Leto <jonathan@leto.net>2011-02-04 17:09:36 -0800
commitd998a2b94053ecef982bb31eff876345ecc84d3a (patch)
tree0e981a89ea0ee033ed20653f9f09880efa5c1e1f /scripts
parentTeach jitterbug::Emailer how to send PASS emails (diff)
downloadjitterbug-d998a2b94053ecef982bb31eff876345ecc84d3a.tar.gz
Teach jitterbug how to run Ruby Rakefile tests
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/capsule.sh2
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/capsule.sh b/scripts/capsule.sh
index ca84d62..30c3877 100755
--- a/scripts/capsule.sh
+++ b/scripts/capsule.sh
@@ -40,6 +40,8 @@ function jitterbug_build () {
elif [ -f 'Makefile' ]; then
echo "Found a Makefile"
make test >> $logfile 2>&1
+ elif [ -f 'Rakefile' ]; then
+ rake test >> $logfile 2>&1
fi
}