Also accept 'y'

This commit is contained in:
Andy Smith 2010-10-15 16:06:12 +09:00
parent 68c8f2ba17
commit e80e91bd65
1 changed files with 1 additions and 1 deletions

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" -o "x$use_ve" = "x" ]; then
if [ "x$use_ve" = "xY" -o "x$use_ve" = "x" -o "x$use_ve" = "xy" ]; then
# Install the virtualenv and run the test suite in it
python tools/install_venv.py
else