diff options
author | Guido van Rossum <guido@python.org> | 2007-07-18 16:59:11 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2007-07-18 16:59:11 (GMT) |
commit | 5ed317d790023e766e6992020d268e0e9fc35dfc (patch) | |
tree | 6763014738a01ea57555627f4a0553bf8d33d5fb /runtests.sh | |
parent | 10a60b3ec0cdf7eeac98258fc53a33b7026f8ff3 (diff) | |
download | cpython-5ed317d790023e766e6992020d268e0e9fc35dfc.zip cpython-5ed317d790023e766e6992020d268e0e9fc35dfc.tar.gz cpython-5ed317d790023e766e6992020d268e0e9fc35dfc.tar.bz2 |
Do the right thing for CYGWIN.
Diffstat (limited to 'runtests.sh')
-rwxr-xr-x | runtests.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/runtests.sh b/runtests.sh index 2a6c0ba..837aab2 100755 --- a/runtests.sh +++ b/runtests.sh @@ -13,6 +13,7 @@ unset PYTHONPATH # Choose the Python binary. case `uname` in Darwin) PYTHON=./python.exe;; +CYGWIN*) PYTHON=./python.exe;; *) PYTHON=./python;; esac |