This is an automated email from the ASF dual-hosted git repository.
xiaoxiang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/nuttx-apps.git
The following commit(s) were added to refs/heads/master by this push:
new a09521ed5 system/nxdiag: Remove unnecessary `--depth` parameter
a09521ed5 is described below
commit a09521ed55eee01d00efb542863c9c2927cf9e26
Author: Tiago Medicci Serrano <[email protected]>
AuthorDate: Mon May 20 10:20:51 2024 -0300
system/nxdiag: Remove unnecessary `--depth` parameter
This commits removes the unnecesary `--depth` parameter: Espressif
common headers do not require it.
---
system/nxdiag/Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/system/nxdiag/Makefile b/system/nxdiag/Makefile
index 73efc4edd..743610166 100644
--- a/system/nxdiag/Makefile
+++ b/system/nxdiag/Makefile
@@ -80,7 +80,7 @@ INFO_DEPS += espressif_prepare
espressif_prepare:
ifeq ($(HALDIR),$(ARCH_ESP_HALDIR))
@echo "Unshallowing Espressif HAL..."
- (cd ${HALDIR} && git fetch --depth=10000 && git fetch --tags)
+ (cd ${HALDIR} && git fetch && git fetch --tags)
endif
ifdef ESPTOOL_BINDIR