diff options
author | Matti Picus <matti.picus@gmail.com> | 2017-12-29 16:15:54 +0200 |
---|---|---|
committer | Matti Picus <matti.picus@gmail.com> | 2017-12-29 16:15:54 +0200 |
commit | ca018172399f9c552e0e54ac246788350a0b065a (patch) | |
tree | 8f841737e1441490baf2a8eedf1d53e42298498c /testrunner | |
parent | add more info for buildbot virtualenv run with -A (diff) | |
download | pypy-ca018172399f9c552e0e54ac246788350a0b065a.tar.gz pypy-ca018172399f9c552e0e54ac246788350a0b065a.tar.bz2 pypy-ca018172399f9c552e0e54ac246788350a0b065a.zip |
fix target_name
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 0368008d1b..e99bbba917 100644 --- a/testrunner/get_info.py +++ b/testrunner/get_info.py @@ -9,7 +9,7 @@ import json BASE_DIR = os.path.abspath(os.path.dirname(os.path.dirname(__file__))) if sys.platform.startswith('win'): - TARGET_NAME = r'Scripts\\pypy3-c.exe' + TARGET_NAME = r'pypy3-c.exe' TARGET_DIR = 'Scripts' else: TARGET_NAME = 'pypy3-c' |