We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d353e58 commit b007cd8Copy full SHA for b007cd8
tools/install-esp-idf.sh
@@ -16,10 +16,8 @@ if [ -z "$IDF_PATH" ]; then
16
echo "ESP-IDF is not installed! Installing local copy"
17
idf_was_installed="1"
18
if ! [ -d esp-idf ]; then
19
- echo "git clone --recursive $IDF_REPO_URL -b $IDF_BRANCH"
20
- git clone --recursive $IDF_REPO_URL -b $IDF_BRANCH
21
- echo "git checkout e8af343d93b8fe409f6b793e955c608d4f75607b"
22
- git checkout e8af343d93b8fe409f6b793e955c608d4f75607b
+ echo "git clone $IDF_REPO_URL -b $IDF_BRANCH"
+ git clone $IDF_REPO_URL -b $IDF_BRANCH
23
fi
24
export IDF_PATH="$AR_ROOT/esp-idf"
25
0 commit comments