File tree 2 files changed +5
-4
lines changed
2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -95,20 +95,21 @@ mkdir -p dist
95
95
96
96
if [ $SKIP_ENV -eq 0 ]; then
97
97
echo " * Installing/Updating ESP-IDF and all components..."
98
- # update components from git
98
+ echo " - update components from git"
99
99
./tools/update-components.sh
100
100
if [ $? -ne 0 ]; then exit 1; fi
101
101
102
- # install arduino component
102
+ echo " - install arduino component"
103
103
./tools/install-arduino.sh
104
104
if [ $? -ne 0 ]; then exit 1; fi
105
105
106
- # install esp-idf
106
+ echo " - install esp-idf"
107
107
source ./tools/install-esp-idf.sh
108
108
if [ $? -ne 0 ]; then exit 1; fi
109
109
else
110
110
# $IDF_PATH/install.sh
111
111
# source $IDF_PATH/export.sh
112
+ echo " - configure tools"
112
113
source ./tools/config.sh
113
114
fi
114
115
Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ if [ ! -d "$IDF_LIBS_DIR" ]; then
54
54
echo " Cloning esp32-arduino-libs..."
55
55
git clone " $AR_LIBS_REPO_URL " " $IDF_LIBS_DIR "
56
56
else
57
- echo " Updating esp32-arduino-libs..."
57
+ echo " Updating esp32-arduino-libs ( $IDF_LIBS_DIR ) ..."
58
58
git -C " $IDF_LIBS_DIR " fetch && \
59
59
git -C " $IDF_LIBS_DIR " pull --ff-only
60
60
fi
You can’t perform that action at this time.
0 commit comments