diff options
author | Armin Rigo <arigo@tunes.org> | 2017-12-30 18:43:22 +0100 |
---|---|---|
committer | Armin Rigo <arigo@tunes.org> | 2017-12-30 18:43:22 +0100 |
commit | f8b9167934187f04054c99a493d4467a92a8d135 (patch) | |
tree | ad2b3c60ab5bad5a43dbbb75a4b989e93339fbe7 /testrunner | |
parent | pypy uses bin not Scripts, https://github.com/pypa/virtualenv/issues/789 (diff) | |
download | pypy-f8b9167934187f04054c99a493d4467a92a8d135.tar.gz pypy-f8b9167934187f04054c99a493d4467a92a8d135.tar.bz2 pypy-f8b9167934187f04054c99a493d4467a92a8d135.zip |
Fix for pypy2?
Diffstat (limited to 'testrunner')
-rw-r--r-- | testrunner/get_info.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testrunner/get_info.py b/testrunner/get_info.py index df146c60ec..6f6283e32c 100644 --- a/testrunner/get_info.py +++ b/testrunner/get_info.py @@ -13,7 +13,7 @@ if sys.platform.startswith('win'): # see https://github.com/pypa/virtualenv/issues/789 TARGET_DIR = 'bin' else: - TARGET_NAME = 'pypy3-c' + TARGET_NAME = 'pypy-c' TARGET_DIR = 'bin' VENV_DIR = 'pypy-venv' |