From 84b29f542cd78f02cd4a37295110ea5a10719495 Mon Sep 17 00:00:00 2001 From: Starbeamrainbowlabs Date: Thu, 12 Dec 2024 03:45:39 +0000 Subject: [PATCH] compile-wasm: add git submodule update --init task --- src/wasm/compile-wasm.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/wasm/compile-wasm.sh b/src/wasm/compile-wasm.sh index 12b5a7c..ac7b4f3 100755 --- a/src/wasm/compile-wasm.sh +++ b/src/wasm/compile-wasm.sh @@ -23,6 +23,9 @@ fi check_command clang true; +task_begin "Checkout git submodules"; +git submodule update --init; +task_end "${?}"; task_begin "Compile";