diff options
author | Robin Houston <robin.houston@gmail.com> | 2012-01-31 17:52:22 +0000 |
---|---|---|
committer | Robin Houston <robin.houston@gmail.com> | 2012-01-31 17:52:22 +0000 |
commit | a3dc416767b093af851ca0bece3daaf783c3c9e0 (patch) | |
tree | 4dba95cf2ce5027b97d2ecafc6c3740d410c5edb /script/spec-all-pairs | |
parent | c36b1b52e04213be91b461416d81ecbade4db159 (diff) |
Suppress stderr output from rake db:test:prepare
Diffstat (limited to 'script/spec-all-pairs')
-rwxr-xr-x | script/spec-all-pairs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/script/spec-all-pairs b/script/spec-all-pairs index e5a6dc1cb..31cb7a36b 100755 --- a/script/spec-all-pairs +++ b/script/spec-all-pairs @@ -4,7 +4,7 @@ # to winkle out order-dependent failures. test_pair () { - rake db:test:prepare > /dev/null + rake db:test:prepare > /dev/null 2>&1 if script/spec "$1" "$2" > /dev/null 2>&1 then echo "OK: $1 $2" |