diff options
| author | Jez Ng | 2012-11-03 13:48:22 -0400 | 
|---|---|---|
| committer | Jez Ng | 2012-11-03 13:48:22 -0400 | 
| commit | c0b317a62ae4552d6be32ab066f2514d1fd683eb (patch) | |
| tree | 2873fccf9857c7f35d7940cfc22134a50396c3a6 | |
| parent | cbc929e808e18ca3f52f834c45703662ea28782d (diff) | |
| download | vimium-c0b317a62ae4552d6be32ab066f2514d1fd683eb.tar.bz2 | |
Pipe `popd` output to /dev/null.
| -rwxr-xr-x | git_hooks/pre-commit | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/git_hooks/pre-commit b/git_hooks/pre-commit index f8dacac2..495e618e 100755 --- a/git_hooks/pre-commit +++ b/git_hooks/pre-commit @@ -17,7 +17,7 @@ pushd $TDIR > /dev/null    cake build    cake test    TEST_RESULT=$? -popd +popd > /dev/null  echo "Tests completed." | 
