7 lines
157 B
Bash
7 lines
157 B
Bash
|
|
if [ ! -f vendor/micropython/ports/unix/micropython ]; then
|
||
|
|
echo "Run make micropython-build-unix"
|
||
|
|
exit 1
|
||
|
|
fi
|
||
|
|
|
||
|
|
vendor/micropython/ports/unix/micropython $@
|