make run_tests.sh's default perform as expected

This commit is contained in:
Andy Smith
2010-10-15 15:25:29 +09:00
parent aec330b34d
commit 68c8f2ba17

View File

@@ -55,7 +55,7 @@ else
else
echo -e "No virtual environment found...create one? (Y/n) \c"
read use_ve
if [ "x$use_ve" = "xY" ]; then
if [ "x$use_ve" = "xY" -o "x$use_ve" = "x" ]; then
# Install the virtualenv and run the test suite in it
python tools/install_venv.py
else