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 9ff28c9 commit 6748da9Copy full SHA for 6748da9
tools/install-esp-idf.sh
@@ -52,11 +52,12 @@ if [ "$IDF_TAG" ]; then
52
git -C "$IDF_PATH" checkout "tags/$IDF_TAG"
53
idf_was_installed="1"
54
elif [ "$IDF_COMMIT" ]; then
55
+ git remote add cherrypick https://github.com/$IDF_REPO.git
56
+ git fetch cherrypick release/v5.3
57
echo "Checkout commit $IDF_COMMIT from branch $IDF_BRANCH"
58
git -C "$IDF_PATH" checkout "$IDF_COMMIT"
59
git switch -c work
- git submodule update --recursive
- git fetch origin release/v5.3
60
+ git submodule update --recursive
61
git cherry-pick d3354f2c65368f716dee48ed8bccf33372bf1c5e
62
commit_predefined="1"
63
fi
0 commit comments