mirror of
https://github.com/espressif/esp-idf.git
synced 2025-07-30 10:47:19 +02:00
Merge branch 'bugfix/python_env_not_installed_by_install.ps1_v4.4' into 'release/v4.4'
tools: fix python-env install by install.ps1 (v4.4) See merge request espressif/esp-idf!17751
This commit is contained in:
10
install.ps1
10
install.ps1
@ -8,12 +8,14 @@ if($args.count -eq 0){
|
|||||||
$TARGETS = $args[0] -join ','
|
$TARGETS = $args[0] -join ','
|
||||||
}
|
}
|
||||||
Write-Output "Installing ESP-IDF tools"
|
Write-Output "Installing ESP-IDF tools"
|
||||||
Start-Process -Wait -NoNewWindow -FilePath "python" -Args "$IDF_PATH/tools/idf_tools.py install --targets=${TARGETS}"
|
$proces_tools = Start-Process -Wait -PassThru -NoNewWindow -FilePath "python" -Args "$IDF_PATH/tools/idf_tools.py install --targets=${TARGETS}"
|
||||||
if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE } # if error
|
$exit_code_tools = $proces_tools.ExitCode
|
||||||
|
if ($exit_code_tools -ne 0) { exit $exit_code_tools } # if error
|
||||||
|
|
||||||
Write-Output "Setting up Python environment"
|
Write-Output "Setting up Python environment"
|
||||||
Start-Process -Wait -NoNewWindow -FilePath "python" -Args "$IDF_PATH/tools/idf_tools.py install-python-env"
|
$proces_py_env = Start-Process -Wait -PassThru -NoNewWindow -FilePath "python" -Args "$IDF_PATH/tools/idf_tools.py install-python-env --features=${FEATURES}"
|
||||||
if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE} # if error
|
$exit_code_py_env = $proces_py_env.ExitCode
|
||||||
|
if ($exit_code_py_env -ne 0) { exit $exit_code_py_env } # if error
|
||||||
|
|
||||||
|
|
||||||
Write-Output "
|
Write-Output "
|
||||||
|
Reference in New Issue
Block a user