File tree 2 files changed +5
-19
lines changed
2 files changed +5
-19
lines changed Original file line number Diff line number Diff line change 3
3
cmake_minimum_required (VERSION 3.5)
4
4
5
5
set (RMAKER_PATH ${CMAKE_SOURCE_DIR} /components/esp-rainmaker)
6
- set (EXTRA_COMPONENT_DIRS ${RMAKER_PATH} /components/esp-insights/components ${RMAKER_PATH} /components ${CMAKE_SOURCE_DIR} /components/esp-insights/components )
6
+ set (EXTRA_COMPONENT_DIRS ${RMAKER_PATH} /components/esp-insights/components ${RMAKER_PATH} /components)
7
7
8
8
include ($ENV{IDF_PATH} /tools/cmake/project.cmake)
9
9
project (arduino-lib-builder)
Original file line number Diff line number Diff line change 62
62
git -C " $AR_COMPS /esp32-camera" fetch && \
63
63
git -C " $AR_COMPS /esp32-camera" pull --ff-only
64
64
fi
65
- # this is a temp measure to fix build issue
66
- # if [ -f "$AR_COMPS/esp32-camera/idf_component.yml" ]; then
67
- # rm -rf "$AR_COMPS/esp32-camera/idf_component.yml"
68
- # fi
69
65
if [ $? -ne 0 ]; then exit 1; fi
70
66
71
67
#
79
75
git -C " $AR_COMPS /esp-dl" pull --ff-only
80
76
fi
81
77
if [ $? -ne 0 ]; then exit 1; fi
78
+ # this is a temp measure to fix build issue
79
+ if [ -f " $AR_COMPS /esp-dl/idf_component.yml" ]; then
80
+ rm -rf " $AR_COMPS /esp-dl/idf_component.yml"
81
+ fi
82
82
83
83
#
84
84
# CLONE/UPDATE ESP-LITTLEFS
@@ -108,20 +108,6 @@ else
108
108
fi
109
109
if [ $? -ne 0 ]; then exit 1; fi
110
110
111
- #
112
- # CLONE/UPDATE ESP-INSIGHTS
113
- #
114
- # echo "Updating ESP-Insights..."
115
- # if [ ! -d "$AR_COMPS/esp-insights" ]; then
116
- # git clone $INSIGHTS_REPO_URL "$AR_COMPS/esp-insights" && \
117
- # git -C "$AR_COMPS/esp-insights" submodule update --init --recursive
118
- # else
119
- # git -C "$AR_COMPS/esp-insights" fetch && \
120
- # git -C "$AR_COMPS/esp-insights" pull --ff-only && \
121
- # git -C "$AR_COMPS/esp-insights" submodule update --init --recursive
122
- # fi
123
- # if [ $? -ne 0 ]; then exit 1; fi
124
-
125
111
#
126
112
# CLONE/UPDATE ESP-DSP
127
113
#
You can’t perform that action at this time.
0 commit comments