We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a93dd64 commit 1f978b3Copy full SHA for 1f978b3
tools/install-arduino.sh
@@ -41,8 +41,8 @@ fi
41
42
if [ "$AR_BRANCH" ]; then
43
echo "AR_BRANCH='$AR_BRANCH'"
44
+ git -C "$AR_COMPS/arduino" fetch --all && \
45
git -C "$AR_COMPS/arduino" checkout "$AR_BRANCH" && \
- git -C "$AR_COMPS/arduino" fetch && \
46
git -C "$AR_COMPS/arduino" pull --ff-only
47
fi
48
if [ $? -ne 0 ]; then exit 1; fi
tools/install-esp-idf.sh
@@ -17,6 +17,8 @@ if [ ! -d "$IDF_PATH" ]; then
17
idf_was_installed="1"
18
19
20
+git -C "$IDF_PATH" fetch --all --tags
21
+
22
if [ "$IDF_TAG" ]; then
23
git -C "$IDF_PATH" checkout "tags/$IDF_TAG"
24
0 commit comments