diff options
author | Damien George <damien.p.george@gmail.com> | 2017-11-28 10:50:32 +1100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2017-11-28 10:50:32 +1100 |
commit | 7cf446f3daa820b15f0027d3468f1b78be17fec7 (patch) | |
tree | e7b2e4c8e00207867ee0ee36b5be0983fb87b1eb /tools | |
parent | 2161d6b603e2dfc444a597c4346f7e2301f9c05e (diff) |
tools/gen-cpydiff.py: Update executable paths to point to new ports dir.
Diffstat (limited to 'tools')
-rw-r--r-- | tools/gen-cpydiff.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/gen-cpydiff.py b/tools/gen-cpydiff.py index aff5b56e7..8aef37514 100644 --- a/tools/gen-cpydiff.py +++ b/tools/gen-cpydiff.py @@ -39,10 +39,10 @@ from collections import namedtuple # to the correct executable. if os.name == 'nt': CPYTHON3 = os.getenv('MICROPY_CPYTHON3', 'python3.exe') - MICROPYTHON = os.getenv('MICROPY_MICROPYTHON', '../windows/micropython.exe') + MICROPYTHON = os.getenv('MICROPY_MICROPYTHON', '../ports/windows/micropython.exe') else: CPYTHON3 = os.getenv('MICROPY_CPYTHON3', 'python3') - MICROPYTHON = os.getenv('MICROPY_MICROPYTHON', '../unix/micropython') + MICROPYTHON = os.getenv('MICROPY_MICROPYTHON', '../ports/unix/micropython') TESTPATH = '../tests/cpydiff/' DOCPATH = '../docs/genrst/' |