File tree 2 files changed +12
-1
lines changed
2 files changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -10,3 +10,4 @@ __pycache__/
10
10
out /
11
11
_build /
12
12
tools /chip-tool /
13
+ .zap /
Original file line number Diff line number Diff line change @@ -22,7 +22,17 @@ echo ""
22
22
zap_path=` python3 ${ESP_MATTER_PATH} /connectedhomeip/connectedhomeip/scripts/tools/zap/zap_download.py \
23
23
--sdk-root ${ESP_MATTER_PATH} /connectedhomeip/connectedhomeip --zap RELEASE --zap-version v2023.03.06-nightly \
24
24
--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
26
36
mkdir ${ESP_MATTER_PATH} /.zap
27
37
mv $zap_path /* ${ESP_MATTER_PATH} /.zap/
28
38
rm -r $zap_path
You can’t perform that action at this time.
0 commit comments