File tree Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -30,6 +30,7 @@ CAMERA_REPO_URL="https://github.com/espressif/esp32-camera.git"
30
30
FACE_REPO_URL=" https://github.com/espressif/esp-face.git"
31
31
LITTLEFS_REPO_URL=" https://github.com/joltwallet/esp_littlefs.git"
32
32
AR_REPO_URL=" https://github.com/$AR_REPO .git"
33
+ RMAKER_REPO_URL=" https://github.com/espressif/esp-rainmaker.git"
33
34
34
35
if [ -n $GITHUB_TOKEN ]; then
35
36
AR_REPO_URL=" https://$GITHUB_TOKEN @github.com/$AR_REPO .git"
Original file line number Diff line number Diff line change @@ -42,3 +42,13 @@ if [ ! -d "$AR_COMPS/esp_littlefs" ]; then
42
42
git -C " $AR_COMPS /esp_littlefs" submodule update --init --recursive
43
43
fi
44
44
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
+
You can’t perform that action at this time.
0 commit comments