We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 960d4c4 commit 7ef5f9cCopy full SHA for 7ef5f9c
tools/install-esp-idf.sh
@@ -49,7 +49,14 @@ else
49
fi
50
51
if [ "$IDF_TAG" ]; then
52
+ cd $IDF_PATH
53
git -C "$IDF_PATH" checkout "tags/$IDF_TAG"
54
+ git reset --hard "tags/$IDF_TAG"
55
+ git submodule update --recursive
56
+ git rm -r $IDF_PATH/components/wifi_provisioning
57
+ git rm -r $IDF_PATH/components/spiffs
58
+ git commit -m "delete components SPIFFS and wifi-provisioning"
59
+ cd -
60
idf_was_installed="1"
61
elif [ "$IDF_COMMIT" ]; then
62
cd $IDF_PATH
0 commit comments