From 52c7be4e1684c8da4e987f03e1b6d1e30c7328b1 Mon Sep 17 00:00:00 2001 From: Pol Henarejos Date: Thu, 18 Aug 2022 23:38:50 +0200 Subject: [PATCH] Also clone nested submodules Signed-off-by: Pol Henarejos --- workflows/autobuild.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/workflows/autobuild.sh b/workflows/autobuild.sh index 230d107..4c62fe5 100755 --- a/workflows/autobuild.sh +++ b/workflows/autobuild.sh @@ -1,11 +1,11 @@ #!/bin/bash -git submodule update --init +git submodule update --init --recursive sudo apt update sudo apt install -y cmake gcc-arm-none-eabi libnewlib-arm-none-eabi libstdc++-arm-none-eabi-newlib git clone https://github.com/raspberrypi/pico-sdk cd pico-sdk -git submodule update --init +git submodule update --init --recursive cd .. mkdir build cd build