We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 20d493d commit 8b8e888Copy full SHA for 8b8e888
tools/update-components.sh
@@ -7,10 +7,10 @@ source ./tools/config.sh
7
#
8
9
if [ ! -d "$AR_COMPS/arduino" ]; then
10
- git clone -b latest-3.3 $AR_REPO_URL "$AR_COMPS/arduino"
+ git clone -b idf-release/v3.3 $AR_REPO_URL "$AR_COMPS/arduino"
11
else
12
git -C "$AR_COMPS/arduino" fetch origin && \
13
- git -C "$AR_COMPS/arduino" pull origin latest-3.3
+ git -C "$AR_COMPS/arduino" pull origin idf-release/v3.3
14
fi
15
if [ $? -ne 0 ]; then exit 1; fi
16
git -C "$AR_COMPS/arduino" submodule update --init --recursive
0 commit comments