Skip to content

Commit 6538eff

Browse files
authored
Merge pull request #18 from sweetymhaiske/ESP_RainMaker
Changes added for ESP RainMaker libs
2 parents 038f4b5 + 1abf4bc commit 6538eff

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

tools/config.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ CAMERA_REPO_URL="https://github.com/espressif/esp32-camera.git"
3030
FACE_REPO_URL="https://github.com/espressif/esp-face.git"
3131
LITTLEFS_REPO_URL="https://github.com/joltwallet/esp_littlefs.git"
3232
AR_REPO_URL="https://github.com/$AR_REPO.git"
33+
RMAKER_REPO_URL="https://github.com/espressif/esp-rainmaker.git"
3334

3435
if [ -n $GITHUB_TOKEN ]; then
3536
AR_REPO_URL="https://$GITHUB_TOKEN@github.com/$AR_REPO.git"

tools/update-components.sh

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,3 +42,13 @@ if [ ! -d "$AR_COMPS/esp_littlefs" ]; then
4242
git -C "$AR_COMPS/esp_littlefs" submodule update --init --recursive
4343
fi
4444
if [ $? -ne 0 ]; then exit 1; fi
45+
46+
#
47+
# CLONE/UPDATE ESP-RAINMAKER
48+
#
49+
50+
if [ ! -d "$AR_COMPS/esp-rainmaker" ]; then
51+
git clone $RMAKER_REPO_URL "$AR_COMPS/esp-rainmaker"
52+
fi
53+
if [ $? -ne 0 ]; then exit 1; fi
54+

0 commit comments

Comments
 (0)