From a1f03817975d29fc332e81d0420859bb8677053e Mon Sep 17 00:00:00 2001 From: Roland Dobai Date: Tue, 16 Aug 2022 12:10:02 +0200 Subject: [PATCH] Tools: Remove undefined variable from install.ps1 Closes https://github.com/espressif/esp-idf/issues/9556 --- install.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.ps1 b/install.ps1 index d06dc0f831..47e3c31c76 100644 --- a/install.ps1 +++ b/install.ps1 @@ -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