We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1c50ef5 commit 8402049Copy full SHA for 8402049
tools/install-esp-idf.sh
@@ -52,12 +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"
- git switch -c work
59
+ git reset --hard $IDF_COMMIT
60
git submodule update --recursive
- git remote add cherrypick https://github.com/$IDF_REPO.git
- git fetch cherrypick release/v5.3
61
git cherry-pick d3354f2c65368f716dee48ed8bccf33372bf1c5e
62
commit_predefined="1"
63
fi
0 commit comments