mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
Tools: Remove undefined variable from install.ps1
Closes https://github.com/espressif/esp-idf/issues/9556
This commit is contained in:
parent
06ca9b6427
commit
a1f0381797
@ -13,7 +13,7 @@ $exit_code_tools = $proces_tools.ExitCode
|
||||
if ($exit_code_tools -ne 0) { exit $exit_code_tools } # if error
|
||||
|
||||
Write-Output "Setting up Python environment"
|
||||
$proces_py_env = Start-Process -Wait -PassThru -NoNewWindow -FilePath "python" -Args "$IDF_PATH/tools/idf_tools.py install-python-env --features=${FEATURES}"
|
||||
$proces_py_env = Start-Process -Wait -PassThru -NoNewWindow -FilePath "python" -Args "$IDF_PATH/tools/idf_tools.py install-python-env"
|
||||
$exit_code_py_env = $proces_py_env.ExitCode
|
||||
if ($exit_code_py_env -ne 0) { exit $exit_code_py_env } # if error
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user