Skip to content

Commit 38a4976

Browse files
authored
fix fetching submodules (cp build process change) (#627)
1 parent 73dbbf7 commit 38a4976

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build-cp.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ readlinkf_posix() {
3737
}
3838
NPROC=$(python3 -c 'import multiprocessing; print(multiprocessing.cpu_count())')
3939
HERE="$(dirname -- "$(readlinkf_posix -- "${0}")" )"
40-
[ -e circuitpython/py/py.mk ] || (git clone --branch main https://github.com/adafruit/circuitpython && cd circuitpython && make fetch-submodules && git submodule update --init lib/uzlib tools)
40+
[ -e circuitpython/py/py.mk ] || (git clone --branch main https://github.com/adafruit/circuitpython && cd circuitpython && make fetch-all-submodules && git submodule update --init lib/uzlib tools)
4141
rm -rf circuitpython/extmod/ulab; ln -s "$HERE" circuitpython/extmod/ulab
4242
dims=${1-2}
4343
make -C circuitpython/mpy-cross -j$NPROC

0 commit comments

Comments
 (0)