File tree 3 files changed +17
-0
lines changed
3 files changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,10 @@ EXTRA_COMPONENT_DIRS += $(PROJECT_PATH)/components/esp-face/lib
4
4
EXTRA_COMPONENT_DIRS += $(PROJECT_PATH ) /components/esp-face/image_util
5
5
EXTRA_COMPONENT_DIRS += $(PROJECT_PATH ) /components/esp-face/face_detection
6
6
EXTRA_COMPONENT_DIRS += $(PROJECT_PATH ) /components/esp-face/face_recognition
7
+ EXTRA_COMPONENT_DIRS += $(PROJECT_PATH ) /components/esp-rainmaker/components/esp_rainmaker
8
+ EXTRA_COMPONENT_DIRS += $(PROJECT_PATH ) /components/esp-rainmaker/components/json_generator
9
+ EXTRA_COMPONENT_DIRS += $(PROJECT_PATH ) /components/esp-rainmaker/components/json_parser
10
+ EXTRA_COMPONENT_DIRS += $(PROJECT_PATH ) /components/esp-rainmaker/components/qrcode
7
11
8
12
include $(IDF_PATH ) /make/project.mk
9
13
Original file line number Diff line number Diff line change @@ -22,6 +22,7 @@ IDF_REPO_URL="https://github.com/espressif/esp-idf.git"
22
22
CAMERA_REPO_URL=" https://github.com/espressif/esp32-camera.git"
23
23
FACE_REPO_URL=" https://github.com/espressif/esp-face.git"
24
24
AR_REPO_URL=" https://github.com/$AR_REPO .git"
25
+ RMAKER_REPO_URL=" https://github.com/espressif/esp-rainmaker.git"
25
26
26
27
if [ -n $GITHUB_TOKEN ]; then
27
28
AR_REPO_URL=" https://$GITHUB_TOKEN @github.com/$AR_REPO .git"
Original file line number Diff line number Diff line change 38
38
git -C " $AR_COMPS /esp-face" pull origin master
39
39
fi
40
40
if [ $? -ne 0 ]; then exit 1; fi
41
+
42
+ #
43
+ # CLONE/UPDATE RAINMAKER
44
+ #
45
+
46
+ if [ ! -d " $AR_COMPS /esp-rainmaker" ]; then
47
+ git clone $RMAKER_REPO_URL " $AR_COMPS /esp-rainmaker"
48
+ else
49
+ git -C " $AR_COMPS /esp-rainmaker" fetch origin && \
50
+ git -C " $AR_COMPS /esp-rainmaker" pull origin master
51
+ fi
52
+ if [ $? -ne 0 ]; then exit 1; fi
You can’t perform that action at this time.
0 commit comments