@@ -14,7 +14,7 @@ TINYUSB_REPO_URL="https://github.com/hathach/tinyusb.git"
14
14
#
15
15
# CLONE/UPDATE ARDUINO
16
16
#
17
-
17
+ echo " Updating ESP32 Arduino... "
18
18
if [ ! -d " $AR_COMPS /arduino" ]; then
19
19
git clone $AR_REPO_URL " $AR_COMPS /arduino"
20
20
fi
@@ -56,23 +56,23 @@ if [ $? -ne 0 ]; then exit 1; fi
56
56
#
57
57
# CLONE/UPDATE ESP32-CAMERA
58
58
#
59
-
59
+ echo " Updating ESP32 Camera... "
60
60
if [ ! -d " $AR_COMPS /esp32-camera" ]; then
61
61
git clone $CAMERA_REPO_URL " $AR_COMPS /esp32-camera"
62
62
else
63
63
git -C " $AR_COMPS /esp32-camera" fetch && \
64
64
git -C " $AR_COMPS /esp32-camera" pull --ff-only
65
65
fi
66
- # this is a temp measure to fix build issue in recent IDF master
67
- if [ -f " $AR_COMPS /esp32-camera/idf_component.yml" ]; then
68
- rm -rf " $AR_COMPS /esp32-camera/idf_component.yml"
69
- fi
66
+ # this is a temp measure to fix build issue
67
+ # if [ -f "$AR_COMPS/esp32-camera/idf_component.yml" ]; then
68
+ # rm -rf "$AR_COMPS/esp32-camera/idf_component.yml"
69
+ # fi
70
70
if [ $? -ne 0 ]; then exit 1; fi
71
71
72
72
#
73
73
# CLONE/UPDATE ESP-DL
74
74
#
75
-
75
+ echo " Updating ESP-DL... "
76
76
if [ ! -d " $AR_COMPS /esp-dl" ]; then
77
77
git clone $DL_REPO_URL " $AR_COMPS /esp-dl"
78
78
else
@@ -84,19 +84,23 @@ if [ $? -ne 0 ]; then exit 1; fi
84
84
#
85
85
# CLONE/UPDATE ESP-SR
86
86
#
87
-
87
+ echo " Updating ESP-SR... "
88
88
if [ ! -d " $AR_COMPS /esp-sr" ]; then
89
89
git clone $SR_REPO_URL " $AR_COMPS /esp-sr"
90
90
else
91
91
git -C " $AR_COMPS /esp-sr" fetch && \
92
92
git -C " $AR_COMPS /esp-sr" pull --ff-only
93
93
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
94
98
if [ $? -ne 0 ]; then exit 1; fi
95
99
96
100
#
97
101
# CLONE/UPDATE ESP-LITTLEFS
98
102
#
99
-
103
+ echo " Updating ESP-LITTLEFS... "
100
104
if [ ! -d " $AR_COMPS /esp_littlefs" ]; then
101
105
git clone $LITTLEFS_REPO_URL " $AR_COMPS /esp_littlefs" && \
102
106
git -C " $AR_COMPS /esp_littlefs" submodule update --init --recursive
@@ -110,7 +114,7 @@ if [ $? -ne 0 ]; then exit 1; fi
110
114
#
111
115
# CLONE/UPDATE ESP-RAINMAKER
112
116
#
113
-
117
+ echo " Updating ESP-RainMaker... "
114
118
if [ ! -d " $AR_COMPS /esp-rainmaker" ]; then
115
119
git clone $RMAKER_REPO_URL " $AR_COMPS /esp-rainmaker" && \
116
120
git -C " $AR_COMPS /esp-rainmaker" submodule update --init --recursive
@@ -124,7 +128,7 @@ if [ $? -ne 0 ]; then exit 1; fi
124
128
#
125
129
# CLONE/UPDATE ESP-INSIGHTS
126
130
#
127
-
131
+ echo " Updating ESP-Insights... "
128
132
if [ ! -d " $AR_COMPS /esp-insights" ]; then
129
133
git clone $INSIGHTS_REPO_URL " $AR_COMPS /esp-insights" && \
130
134
git -C " $AR_COMPS /esp-insights" submodule update --init --recursive
@@ -138,7 +142,7 @@ if [ $? -ne 0 ]; then exit 1; fi
138
142
#
139
143
# CLONE/UPDATE ESP-DSP
140
144
#
141
-
145
+ echo " Updating ESP-DSP... "
142
146
if [ ! -d " $AR_COMPS /esp-dsp" ]; then
143
147
git clone $DSP_REPO_URL " $AR_COMPS /esp-dsp"
144
148
else
@@ -150,7 +154,7 @@ if [ $? -ne 0 ]; then exit 1; fi
150
154
#
151
155
# CLONE/UPDATE TINYUSB
152
156
#
153
-
157
+ echo " Updating TinyUSB... "
154
158
if [ ! -d " $AR_COMPS /arduino_tinyusb/tinyusb" ]; then
155
159
git clone $TINYUSB_REPO_URL " $AR_COMPS /arduino_tinyusb/tinyusb"
156
160
else
0 commit comments