File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -95,20 +95,21 @@ mkdir -p dist
9595
9696if [ $SKIP_ENV -eq 0 ]; then
9797 echo " * Installing/Updating ESP-IDF and all components..."
98- # update components from git
98+ echo " - update components from git"
9999 ./tools/update-components.sh
100100 if [ $? -ne 0 ]; then exit 1; fi
101101
102- # install arduino component
102+ echo " - install arduino component"
103103 ./tools/install-arduino.sh
104104 if [ $? -ne 0 ]; then exit 1; fi
105105
106- # install esp-idf
106+ echo " - install esp-idf"
107107 source ./tools/install-esp-idf.sh
108108 if [ $? -ne 0 ]; then exit 1; fi
109109else
110110 # $IDF_PATH/install.sh
111111 # source $IDF_PATH/export.sh
112+ echo " - configure tools"
112113 source ./tools/config.sh
113114fi
114115
Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ if [ ! -d "$IDF_LIBS_DIR" ]; then
5454 echo " Cloning esp32-arduino-libs..."
5555 git clone " $AR_LIBS_REPO_URL " " $IDF_LIBS_DIR "
5656else
57- echo " Updating esp32-arduino-libs..."
57+ echo " Updating esp32-arduino-libs ( $IDF_LIBS_DIR ) ..."
5858 git -C " $IDF_LIBS_DIR " fetch && \
5959 git -C " $IDF_LIBS_DIR " pull --ff-only
6060fi
You can’t perform that action at this time.
0 commit comments