From 8b48e04034e7679daefb60aa25da967304a73690 Mon Sep 17 00:00:00 2001 From: Shubham Patil Date: Mon, 19 Sep 2022 15:46:24 +0530 Subject: [PATCH] docs: Only clone ESP32 platform specific submodules Closes https://github.com/espressif/esp-matter/issues/39 --- docs/en/developing.rst | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/en/developing.rst b/docs/en/developing.rst index 1d058b0fe..e165ab7dc 100644 --- a/docs/en/developing.rst +++ b/docs/en/developing.rst @@ -50,8 +50,10 @@ so if you want to do a shallow clone use the following command: :: - git clone --depth 1 --shallow-submodules --recursive https://github.com/espressif/esp-matter.git + git clone --depth 1 https://github.com/espressif/esp-matter.git cd esp-matter + git submodule update --init --depth 1 + ./connectedhomeip/connectedhomeip/scripts/checkout_submodules.py --platform esp32 --shallow ./install.sh cd ..