8000 tools/gen-cpydiff.py: Update executable paths to point to new ports dir. · micropython/micropython-esp32@7cf446f · GitHub
[go: up one dir, main page]

Skip to content
This repository was archived by the owner on Sep 6, 2023. It is now read-only.

Commit 7cf446f

Browse files
committed
tools/gen-cpydiff.py: Update executable paths to point to new ports dir.
1 parent 2161d6b commit 7cf446f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools/gen-cpydiff.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,10 @@
3939
# to the correct executable.
4040
if os.name == 'nt':
4141
CPYTHON3 = os.getenv('MICROPY_CPYTHON3', 'python3.exe')
42-
MICROPYTHON = os.getenv('MICROPY_MICROPYTHON', '../windows/micropython.exe')
42+
MICROPYTHON = os.getenv('MICROPY_MICROPYTHON', '../ports/windows/micropython.exe')
4343
else:
4444
CPYTHON3 = os.getenv('MICROPY_CPYTHON3', 'python3')
45-
MICROPYTHON = os.getenv('MICROPY_MICROPYTHON', '../unix/micropython')
45+
MICROPYTHON = os.getenv('MICROPY_MICROPYTHON', '../ports/unix/micropython')
4646

4747
TESTPATH = '../tests/cpydiff/'
4848
DOCPATH = '../docs/genrst/'

0 commit comments

Comments
 (0)
0