Fix syntax error inside shell script.

This commit is contained in:
Vincent Driessen 2012-01-25 15:24:48 +01:00
parent e992d65a30
commit aa030e0e36
1 changed files with 1 additions and 1 deletions

View File

@ -8,5 +8,5 @@ if check_redis_running; then
/usr/bin/env python -m unittest discover -v -s tests $@ 2>&1 | egrep -v '^test_'
else
echo "Redis not running." >&2
return 2
exit 2
fi