We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f60f918 commit 8031560Copy full SHA for 8031560
tools/install-esp-idf.sh
@@ -52,7 +52,14 @@ if [ "$IDF_TAG" ]; then
52
git -C "$IDF_PATH" checkout "tags/$IDF_TAG"
53
idf_was_installed="1"
54
elif [ "$IDF_COMMIT" ]; then
55
+ cd $IDF_PATH
56
git -C "$IDF_PATH" checkout "$IDF_COMMIT"
57
+ git reset --hard $IDF_COMMIT
58
+ git submodule update --recursive
59
+ git rm -r $IDF_PATH/components/wifi_provisioning
60
+ git rm -r $IDF_PATH/components/spiffs
61
+ git commit -m "delete components SPIFFS and wifi-provisioning"
62
+ cd -
63
commit_predefined="1"
64
fi
65
0 commit comments