Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 1 addition & 6 deletions builder/esp32.py
Original file line number Diff line number Diff line change
Expand Up @@ -336,12 +336,7 @@ def setup_idf_environ():
line.split('=', 1)[0]: line.split('=', 1)[1]
for line in output
}
for item in (
'PATH',
'IDF_PATH',
'IDF_TOOLS_EXPORT_CMD',
'IDF_TOOLS_INSTALL_CMD'
):
for item in ('PATH', 'IDF_PATH'):
if item not in temp_env:
raise RuntimeError(f'"{item}" not found in environment.')

Expand Down