Skip to content

Commit

Permalink
Fix esp-df commit to last working on IDF v4.4
Browse files Browse the repository at this point in the history
  • Loading branch information
me-no-dev committed Aug 12, 2023
1 parent 7f8dda8 commit 6ab7033
Showing 1 changed file with 3 additions and 9 deletions.
12 changes: 3 additions & 9 deletions tools/update-components.sh
Original file line number Diff line number Diff line change
Expand Up @@ -69,15 +69,9 @@ if [ $? -ne 0 ]; then exit 1; fi
#
echo "Updating ESP-DL..."
if [ ! -d "$AR_COMPS/esp-dl" ]; then
git clone $DL_REPO_URL "$AR_COMPS/esp-dl"
else
git -C "$AR_COMPS/esp-dl" fetch && \
git -C "$AR_COMPS/esp-dl" pull --ff-only
fi
if [ $? -ne 0 ]; then exit 1; fi
#this is a temp measure to fix build issue
if [ -f "$AR_COMPS/esp-dl/idf_component.yml" ]; then
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
fi

#
Expand Down

0 comments on commit 6ab7033

Please sign in to comment.