Skip to content
Snippets Groups Projects
Commit 7cf446f3 authored by Damien George's avatar Damien George
Browse files

tools/gen-cpydiff.py: Update executable paths to point to new ports dir.

parent 2161d6b6
No related branches found
No related tags found
No related merge requests found
......@@ -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/'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment