Skip to content

Commit

Permalink
Silence the recursion
Browse files Browse the repository at this point in the history
  • Loading branch information
epiccurious authored Nov 29, 2023
1 parent 9753f01 commit 9f303e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flash_your_device
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 9f303e3

Please sign in to comment.