diff options
Diffstat (limited to 'testrunner')
-rw-r--r-- | testrunner/get_info.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testrunner/get_info.py b/testrunner/get_info.py index 8258a595f9..1e814ac7ef 100644 --- a/testrunner/get_info.py +++ b/testrunner/get_info.py @@ -9,11 +9,11 @@ import json BASE_DIR = os.path.abspath(os.path.dirname(os.path.dirname(__file__))) if sys.platform.startswith('win'): - TARGET_NAME = r'pypy-c.exe' + TARGET_NAME = 'pypy-c.exe' # PyPy uses bin as of PR https://github.com/pypa/virtualenv/pull/1400 TARGET_DIR = 'bin' else: - TARGET_NAME = 'pypy3-c' + TARGET_NAME = 'pypy-c' TARGET_DIR = 'bin' VENV_DIR = 'pypy-venv' |