Skip to content

Commit 78a89b5

Browse files
committed
build(logging): Minor additional logging in the build scripts
1 parent aaf47ab commit 78a89b5

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

build.sh

+4-3
Original file line numberDiff line numberDiff line change
@@ -95,20 +95,21 @@ mkdir -p dist
9595

9696
if [ $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
109109
else
110110
# $IDF_PATH/install.sh
111111
# source $IDF_PATH/export.sh
112+
echo " - configure tools"
112113
source ./tools/config.sh
113114
fi
114115

tools/install-arduino.sh

+1-1
Original file line numberDiff line numberDiff 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"
5656
else
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
6060
fi

0 commit comments

Comments
 (0)