tools/docker: Fixed the esp-matter docker image for the idf path export

- The latest esp-matter docker image for failing on
  the esp-idf path export.
- Fixed the export path issue as per latest changes
  in esp-idf export script.
This commit is contained in:
shripad621git
2025-05-13 11:04:31 +05:30
parent c5cbd5a081
commit ce717135ed
+4 -2
View File
@@ -1,7 +1,9 @@
#!/usr/bin/env bash
set -e
source $IDF_PATH/export.sh
source $ESP_MATTER_PATH/export.sh
cd $IDF_PATH
. ./export.sh
cd $ESP_MATTER_PATH
. ./export.sh
exec "$@"