From 0b7068f287f2a85a0bc02320b91c6b513d3c0025 Mon Sep 17 00:00:00 2001 From: "simon.chupin" Date: Thu, 31 Mar 2022 17:17:25 +0200 Subject: [PATCH] tools: fix python-env install by install.ps1 Closes https://github.com/espressif/esp-idf/issues/8647 --- install.ps1 | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/install.ps1 b/install.ps1 index bcd020b95c..d06dc0f831 100644 --- a/install.ps1 +++ b/install.ps1 @@ -8,12 +8,14 @@ if($args.count -eq 0){ $TARGETS = $args[0] -join ',' } Write-Output "Installing ESP-IDF tools" -Start-Process -Wait -NoNewWindow -FilePath "python" -Args "$IDF_PATH/tools/idf_tools.py install --targets=${TARGETS}" -if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE } # if error +$proces_tools = Start-Process -Wait -PassThru -NoNewWindow -FilePath "python" -Args "$IDF_PATH/tools/idf_tools.py install --targets=${TARGETS}" +$exit_code_tools = $proces_tools.ExitCode +if ($exit_code_tools -ne 0) { exit $exit_code_tools } # if error Write-Output "Setting up Python environment" -Start-Process -Wait -NoNewWindow -FilePath "python" -Args "$IDF_PATH/tools/idf_tools.py install-python-env" -if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE} # if error +$proces_py_env = Start-Process -Wait -PassThru -NoNewWindow -FilePath "python" -Args "$IDF_PATH/tools/idf_tools.py install-python-env --features=${FEATURES}" +$exit_code_py_env = $proces_py_env.ExitCode +if ($exit_code_py_env -ne 0) { exit $exit_code_py_env } # if error Write-Output "