Skip to content

Commit 9e89e8f

Browse files
authored
Update update-components.sh
1 parent 1f1c6dc commit 9e89e8f

File tree

1 file changed

+1
-27
lines changed

1 file changed

+1
-27
lines changed

tools/update-components.sh

Lines changed: 1 addition & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,11 @@
22

33
source ./tools/config.sh
44

5-
DL_REPO_URL="https://github.com/espressif/esp-dl.git"
6-
SR_REPO_URL="https://github.com/espressif/esp-sr.git"
7-
85
#
96
# CLONE/UPDATE ARDUINO
107
#
118

9+
echo "Updating ESP32 Arduino..."
1210
if [ ! -d "$AR_COMPS/arduino" ]; then
1311
git clone $AR_REPO_URL "$AR_COMPS/arduino"
1412
fi
@@ -46,27 +44,3 @@ if [ "$AR_BRANCH" ]; then
4644
git -C "$AR_COMPS/arduino" pull --ff-only
4745
fi
4846
if [ $? -ne 0 ]; then exit 1; fi
49-
50-
#
51-
# CLONE/UPDATE ESP-DL
52-
#
53-
54-
#if [ ! -d "$AR_COMPS/esp-dl" ]; then
55-
# git clone $DL_REPO_URL "$AR_COMPS/esp-dl"
56-
#else
57-
# git -C "$AR_COMPS/esp-dl" fetch && \
58-
# git -C "$AR_COMPS/esp-dl" pull --ff-only
59-
#fi
60-
#if [ $? -ne 0 ]; then exit 1; fi
61-
62-
#
63-
# CLONE/UPDATE ESP-SR
64-
#
65-
66-
#if [ ! -d "$AR_COMPS/esp-sr" ]; then
67-
# git clone $SR_REPO_URL "$AR_COMPS/esp-sr"
68-
#else
69-
# git -C "$AR_COMPS/esp-sr" fetch && \
70-
# git -C "$AR_COMPS/esp-sr" pull --ff-only
71-
#fi
72-
#if [ $? -ne 0 ]; then exit 1; fi

0 commit comments

Comments
 (0)