mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
Merge branch 'fix/install.ps1.v4.4_v4.3' into 'release/v4.3'
Tools: Remove undefined variable from install.ps1 (v4.3) See merge request espressif/esp-idf!19584
This commit is contained in:
commit
b3bdd6afc3
@ -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