We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7f8dda8 commit 6ab7033Copy full SHA for 6ab7033
tools/update-components.sh
@@ -69,15 +69,9 @@ if [ $? -ne 0 ]; then exit 1; fi
69
#
70
echo "Updating ESP-DL..."
71
if [ ! -d "$AR_COMPS/esp-dl" ]; then
72
- git clone $DL_REPO_URL "$AR_COMPS/esp-dl"
73
-else
74
- git -C "$AR_COMPS/esp-dl" fetch && \
75
- git -C "$AR_COMPS/esp-dl" pull --ff-only
76
-fi
77
-if [ $? -ne 0 ]; then exit 1; fi
78
-#this is a temp measure to fix build issue
79
-if [ -f "$AR_COMPS/esp-dl/idf_component.yml" ]; then
80
- rm -rf "$AR_COMPS/esp-dl/idf_component.yml"
+ git clone $DL_REPO_URL "$AR_COMPS/esp-dl" && \
+ git -C "$AR_COMPS/esp-dl" reset --hard 0632d2447dd49067faabe9761d88fa292589d5d9
+ if [ $? -ne 0 ]; then exit 1; fi
81
fi
82
83
0 commit comments