From: Daniel Kahn Gillmor Date: Thu, 30 Oct 2008 16:14:26 +0000 (-0400) Subject: fixing check for test suite. X-Git-Tag: monkeysphere_0.20-1~21 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=b5f5c450f620ea647a72a533e844fb110a5d91df;p=monkeysphere.git fixing check for test suite. --- diff --git a/tests/basic b/tests/basic index fd1bfb0..289a1b7 100755 --- a/tests/basic +++ b/tests/basic @@ -17,7 +17,7 @@ set -e ## make sure that the right tools are installed to run the test. the ## test has *more* requirements than plain ol' monkeysphere: -[ -x $(which socat) ] || { echo "You must have socat installed to run this test." && exit 1; } +which socat || { echo "You must have socat installed to run this test." ; exit 1; } ## FIXME: other checks?