mirror of
https://github.com/espressif/esp-idf.git
synced 2025-07-30 18:57:19 +02:00
Merge branch 'fix/install.ps1.v4.4' into 'release/v4.4'
Tools: Remove undefined variable from install.ps1 (v4.4) See merge request espressif/esp-idf!19583
This commit is contained in:
@ -13,7 +13,7 @@ $exit_code_tools = $proces_tools.ExitCode
|
|||||||
if ($exit_code_tools -ne 0) { exit $exit_code_tools } # if error
|
if ($exit_code_tools -ne 0) { exit $exit_code_tools } # if error
|
||||||
|
|
||||||
Write-Output "Setting up Python environment"
|
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
|
$exit_code_py_env = $proces_py_env.ExitCode
|
||||||
if ($exit_code_py_env -ne 0) { exit $exit_code_py_env } # if error
|
if ($exit_code_py_env -ne 0) { exit $exit_code_py_env } # if error
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user