Skip to content

Commit

Permalink
tools/gen-cpydiff.py: Update executable paths to point to new ports dir.
Browse files Browse the repository at this point in the history
  • Loading branch information
dpgeorge committed Nov 27, 2017
1 parent 2161d6b commit 7cf446f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/gen-cpydiff.py
Expand Up @@ -39,10 +39,10 @@
# 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/'
Expand Down

0 comments on commit 7cf446f

Please sign in to comment.