Skip to content

Commit 362fbfb

Browse files
committed
Delete esp-dl component manifest for requiring IDF 4.4.x
1 parent 248e8e8 commit 362fbfb

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tools/update-components.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,10 @@ else
8080
git -C "$AR_COMPS/esp-dl" pull --ff-only
8181
fi
8282
if [ $? -ne 0 ]; then exit 1; fi
83+
#this is a temp measure to fix build issue
84+
if [ -f "$AR_COMPS/esp-dl/idf_component.yml" ]; then
85+
rm -rf "$AR_COMPS/esp-dl/idf_component.yml"
86+
fi
8387

8488
#
8589
# CLONE/UPDATE ESP-SR
@@ -91,10 +95,6 @@ else
9195
git -C "$AR_COMPS/esp-sr" fetch && \
9296
git -C "$AR_COMPS/esp-sr" pull --ff-only
9397
fi
94-
#this is a temp measure to fix build issue
95-
if [ -f "$AR_COMPS/esp-sr/idf_component.yml" ]; then
96-
rm -rf "$AR_COMPS/esp-sr/idf_component.yml"
97-
fi
9898
if [ $? -ne 0 ]; then exit 1; fi
9999

100100
#

0 commit comments

Comments
 (0)