From 56ba61cedf143ba8e22ba060af561aaed22e6814 Mon Sep 17 00:00:00 2001 From: Jan Pochyla Date: Mon, 7 Aug 2017 16:56:41 +0200 Subject: [PATCH] fix remaining micropython paths --- emu.sh | 2 +- tests/run_tests_device.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) mode change 100755 => 100644 tests/run_tests_device.sh diff --git a/emu.sh b/emu.sh index 854fb0db2..8d7f4cc98 100755 --- a/emu.sh +++ b/emu.sh @@ -2,7 +2,7 @@ source emu.config 2>/dev/null -EXE=vendor/micropython/unix/micropython +EXE=build/unix/micropython OPTLEVEL="${OPTLEVEL:-0}" MAIN="${MAIN:-main.py}" BROWSER="${BROWSER:-chromium}" diff --git a/tests/run_tests_device.sh b/tests/run_tests_device.sh old mode 100755 new mode 100644 index 10a8026bd..6a507fe8e --- a/tests/run_tests_device.sh +++ b/tests/run_tests_device.sh @@ -7,7 +7,7 @@ fi # run emulator cd ../src -../vendor/micropython/unix/micropython -O0 main.py >/dev/null & +../build/unix/micropython -O0 main.py >/dev/null & UPY_PID=$! sleep 1