Skip to content

Commit c5be432

Browse files
committed
scripts: Add check for zap download
1 parent f2e77d2 commit c5be432

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,4 @@ __pycache__/
1010
out/
1111
_build/
1212
tools/chip-tool/
13+
.zap/

install.sh

+11-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,17 @@ echo ""
2222
zap_path=`python3 ${ESP_MATTER_PATH}/connectedhomeip/connectedhomeip/scripts/tools/zap/zap_download.py \
2323
--sdk-root ${ESP_MATTER_PATH}/connectedhomeip/connectedhomeip --zap RELEASE --zap-version v2023.03.06-nightly \
2424
--extract-root .zap 2>/dev/null | cut -d= -f2`
25-
# Move files to one directory up, so that binaries will be in zap/ directory and export.sh can leverage the fixed path
25+
# Check whether the download is successful.
26+
if [ -z $zap_path ]; then
27+
echo "Failed to install zap-cli"
28+
deactivate
29+
exit 1
30+
fi
31+
32+
# Move files to one directory up, so that binaries will be in $ESP_MATTER_PATH/.zap/ directory and export.sh can leverage the fixed path
33+
if [ -d "${ESP_MATTER_PATH}/.zap" ]; then
34+
rm -r ${ESP_MATTER_PATH}/.zap
35+
fi
2636
mkdir ${ESP_MATTER_PATH}/.zap
2737
mv $zap_path/* ${ESP_MATTER_PATH}/.zap/
2838
rm -r $zap_path

0 commit comments

Comments
 (0)