Skip to content

Commit 38aed14

Browse files
committed
Fix esp-sr failing to compile because of esp-dsp location
1 parent dbf05f1 commit 38aed14

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

Diff for: .gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ components/esp-sr/
66
components/esp32-camera/
77
components/esp_littlefs/
88
components/esp-rainmaker/
9-
components/esp-dsp/
9+
components/espressif__esp-dsp/
1010
components/esp-insights/
1111
components/arduino_tinyusb/tinyusb/
1212
esp-idf/

Diff for: tools/update-components.sh

+4-4
Original file line numberDiff line numberDiff line change
@@ -143,11 +143,11 @@ if [ $? -ne 0 ]; then exit 1; fi
143143
# CLONE/UPDATE ESP-DSP
144144
#
145145
echo "Updating ESP-DSP..."
146-
if [ ! -d "$AR_COMPS/esp-dsp" ]; then
147-
git clone $DSP_REPO_URL "$AR_COMPS/esp-dsp"
146+
if [ ! -d "$AR_COMPS/espressif__esp-dsp" ]; then
147+
git clone $DSP_REPO_URL "$AR_COMPS/espressif__esp-dsp"
148148
else
149-
git -C "$AR_COMPS/esp-dsp" fetch && \
150-
git -C "$AR_COMPS/esp-dsp" pull --ff-only
149+
git -C "$AR_COMPS/espressif__esp-dsp" fetch && \
150+
git -C "$AR_COMPS/espressif__esp-dsp" pull --ff-only
151151
fi
152152
if [ $? -ne 0 ]; then exit 1; fi
153153

0 commit comments

Comments
 (0)