From 9f303e32c5280e6acfd7a74b9f9121d51d0e5b9d Mon Sep 17 00:00:00 2001 From: Epic Curious <109078515+epiccurious@users.noreply.github.com> Date: Wed, 29 Nov 2023 18:18:21 -0500 Subject: [PATCH] Silence the recursion --- flash_your_device | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flash_your_device b/flash_your_device index 5587638..3608fb0 100755 --- a/flash_your_device +++ b/flash_your_device @@ -97,7 +97,7 @@ esac echo -n "Checking for the Espressif IoT Development Framework... " if [ ! -f "${esp_idf_save_directory}"/export.sh ]; then echo -ne "\n Downloading the framework... " - git -c advice.detachedHead=false clone --branch "${esp_idf_git_tag}" --single-branch --depth 1 --quiet "${esp_idf_repo_url}" "${esp_idf_temp_directory}" + git -c advice.detachedHead=false clone --branch "${esp_idf_git_tag}" --single-branch --depth 1 --quiet "${esp_idf_repo_url}" "${esp_idf_temp_directory}" 1> /dev/null cd "${esp_idf_temp_directory}"/ git submodule update --depth 1 --quiet --init --recursive ./install.sh esp32 &>/dev/null