1
0
mirror of https://github.com/danbee/unicorn synced 2026-06-20 22:52:22 +00:00

All: Fix common manifest paths to be relative to mpy dir.

On local builds, these were picking up the Python files from an adjacent
pimoroni-pico directory, rather than the one in the temporary build dir.
This commit is contained in:
Phil Howard 2025-02-07 14:15:58 +00:00
parent 7cffdc5ee5
commit 6cafdfb733

View File

@ -9,8 +9,8 @@ require("sdcard")
# Bluetooth
require("aioble")
freeze("../../pimoroni-pico/micropython/modules_py", "pimoroni.py")
freeze("../../pimoroni-pico/micropython/modules_py", "boot.py")
freeze("../../pimoroni-pico/micropython/modules_py", "lte.py")
freeze("$(MPY_DIR)/../pimoroni-pico/micropython/modules_py", "pimoroni.py")
freeze("$(MPY_DIR)/../pimoroni-pico/micropython/modules_py", "boot.py")
freeze("$(MPY_DIR)/../pimoroni-pico/micropython/modules_py", "lte.py")
freeze("../modules/wireless")