aboutsummaryrefslogtreecommitdiffstats
path: root/git_hooks
diff options
context:
space:
mode:
authorJez Ng2012-11-03 14:36:20 -0400
committerJez Ng2012-11-03 14:36:20 -0400
commit0de3404a19779f33d19790488403dbf1335389c6 (patch)
treee461dc610c85d29f4e0b24f96e52316e3c884860 /git_hooks
parentc0b317a62ae4552d6be32ab066f2514d1fd683eb (diff)
downloadvimium-0de3404a19779f33d19790488403dbf1335389c6.tar.bz2
Skip trying to run tests if build fails.
Diffstat (limited to 'git_hooks')
-rwxr-xr-xgit_hooks/pre-commit3
1 files changed, 1 insertions, 2 deletions
diff --git a/git_hooks/pre-commit b/git_hooks/pre-commit
index 495e618e..0a21e79b 100755
--- a/git_hooks/pre-commit
+++ b/git_hooks/pre-commit
@@ -14,8 +14,7 @@ git checkout-index --prefix=$TDIR/ -af
cp -r ./tests/shoulda.js/ $TDIR/tests/shoulda.js/
pushd $TDIR > /dev/null
- cake build
- cake test
+ cake build && cake test
TEST_RESULT=$?
popd > /dev/null