diff options
| author | Andy Smith <code@term.ie> | 2010-10-15 16:06:12 +0900 |
|---|---|---|
| committer | Andy Smith <code@term.ie> | 2010-10-15 16:06:12 +0900 |
| commit | e80e91bd653d16b069d82cb26990718daf38d0c2 (patch) | |
| tree | 11a0d99be8f17b6cc1cf3fdffde2a7a5a628fd22 | |
| parent | 68c8f2ba174a5052a5681bb55f4e21cf5f0febbf (diff) | |
| download | nova-e80e91bd653d16b069d82cb26990718daf38d0c2.tar.gz nova-e80e91bd653d16b069d82cb26990718daf38d0c2.tar.xz nova-e80e91bd653d16b069d82cb26990718daf38d0c2.zip | |
Also accept 'y'
| -rwxr-xr-x | run_tests.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/run_tests.sh b/run_tests.sh index 6a2b15b8f..a11dcd7cc 100755 --- a/run_tests.sh +++ b/run_tests.sh @@ -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 |
