Skip to content

Commit

Permalink
Fix Esp32 Dev Container Python Path (#2700)
Browse files Browse the repository at this point in the history
  • Loading branch information
alberk8 committed Jul 19, 2023
1 parent 0db7ca3 commit 74dca86
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/sources/Dockerfile.All
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ ENV ESP_PATCH_VER=esp-2021r2-patch5-8.4.0
# RUN python -m pip install -r $IDF_PATH/requirements.txt
RUN $IDF_PATH/install.sh

ENV PATH=$PATH:\
ENV PATH=/root/.espressif/python_env/idf4.4_py3.10_env/bin:$PATH:\
$IDF_PATH/components/esptool_py/esptool:\
$IDF_PATH/components/espcoredump:\
$IDF_PATH/components/partition_table/:\
Expand Down
2 changes: 1 addition & 1 deletion .devcontainer/sources/Dockerfile.ESP32
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ ENV ESP_PATCH_VER=esp-2021r2-patch5-8.4.0
# RUN python -m pip install -r $IDF_PATH/requirements.txt
RUN $IDF_PATH/install.sh

ENV PATH=$PATH:\
ENV PATH=/root/.espressif/python_env/idf4.4_py3.10_env/bin:$PATH:\
$IDF_PATH/components/esptool_py/esptool:\
$IDF_PATH/components/espcoredump:\
$IDF_PATH/components/partition_table/:\
Expand Down

0 comments on commit 74dca86

Please sign in to comment.