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:
Roland Dobai 2022-08-16 22:19:41 +08:00
commit 4c550fd79f

View File

@ -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