From 63c0779125a1cdfbf30d70e55809617698f343f2 Mon Sep 17 00:00:00 2001 From: Zhongwei Liu <109257001+Lzw655@users.noreply.github.com> Date: Mon, 28 Oct 2024 21:21:21 +0800 Subject: [PATCH] fix 'git submodule update' typo error --- builder/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builder/__init__.py b/builder/__init__.py index 60d3b2a1..54de7d32 100644 --- a/builder/__init__.py +++ b/builder/__init__.py @@ -332,7 +332,7 @@ def get_lvgl(): def get_micropython(): cmd_ = [ - 'git submodule updatem --init --depth=1 -- lib/micropython', + 'git submodule update --init --depth=1 -- lib/micropython', ] print() print('collecting MicroPython 1.23.0')