mirror of
https://github.com/espressif/esp-idf
synced 2025-03-09 17:19:09 -04:00
tools: fix {install,export}.ps1 for IDF_PATH with spaces
Usage of IDF_PATH has to be quoted in case it contains spaces.
This commit is contained in:
parent
eea8629fa1
commit
2f7c293573
10
export.ps1
10
export.ps1
@ -1,18 +1,18 @@
|
|||||||
#!/usr/bin/env pwsh
|
#!/usr/bin/env pwsh
|
||||||
$S = [IO.Path]::PathSeparator # path separator. WIN:';', UNIX:":"
|
$S = [IO.Path]::PathSeparator # path separator. WIN:';', UNIX:":"
|
||||||
|
|
||||||
$IDF_PATH = $PSScriptRoot
|
$IDF_PATH = "$PSScriptRoot"
|
||||||
|
|
||||||
Write-Output "Setting IDF_PATH: $IDF_PATH"
|
Write-Output "Setting IDF_PATH: $IDF_PATH"
|
||||||
$env:IDF_PATH = $IDF_PATH
|
$env:IDF_PATH = "$IDF_PATH"
|
||||||
|
|
||||||
Write-Output "Checking Python compatibility"
|
Write-Output "Checking Python compatibility"
|
||||||
python $IDF_PATH/tools/python_version_checker.py
|
python "$IDF_PATH/tools/python_version_checker.py"
|
||||||
|
|
||||||
Write-Output "Adding ESP-IDF tools to PATH..."
|
Write-Output "Adding ESP-IDF tools to PATH..."
|
||||||
$OLD_PATH = $env:PATH.split($S) | Select-Object -Unique # array without duplicates
|
$OLD_PATH = $env:PATH.split($S) | Select-Object -Unique # array without duplicates
|
||||||
# using idf_tools.py to get $envars_array to set
|
# using idf_tools.py to get $envars_array to set
|
||||||
$envars_raw = python $IDF_PATH/tools/idf_tools.py export --format key-value
|
$envars_raw = python "$IDF_PATH/tools/idf_tools.py" export --format key-value
|
||||||
if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE } # if error
|
if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE } # if error
|
||||||
|
|
||||||
$envars_array = @() # will be filled like:
|
$envars_array = @() # will be filled like:
|
||||||
@ -75,7 +75,7 @@ Write-Output "Checking if Python packages are up to date..."
|
|||||||
Start-Process -Wait -NoNewWindow -FilePath "python" -Args "`"$IDF_PATH/tools/idf_tools.py`" check-python-dependencies"
|
Start-Process -Wait -NoNewWindow -FilePath "python" -Args "`"$IDF_PATH/tools/idf_tools.py`" check-python-dependencies"
|
||||||
if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE } # if error
|
if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE } # if error
|
||||||
|
|
||||||
$uninstall = python $IDF_PATH/tools/idf_tools.py uninstall --dry-run
|
$uninstall = python "$IDF_PATH/tools/idf_tools.py" uninstall --dry-run
|
||||||
|
|
||||||
if (![string]::IsNullOrEmpty($uninstall)){
|
if (![string]::IsNullOrEmpty($uninstall)){
|
||||||
Write-Output ""
|
Write-Output ""
|
||||||
|
@ -4,14 +4,14 @@ $IDF_PATH = $PSScriptRoot
|
|||||||
$TARGETS = (python "$IDF_PATH/tools/install_util.py" extract targets "$args")
|
$TARGETS = (python "$IDF_PATH/tools/install_util.py" extract targets "$args")
|
||||||
|
|
||||||
Write-Output "Installing ESP-IDF tools"
|
Write-Output "Installing ESP-IDF tools"
|
||||||
$proces_tools = Start-Process -Wait -PassThru -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}"
|
||||||
$exit_code_tools = $proces_tools.ExitCode
|
$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
|
||||||
|
|
||||||
$FEATURES = (python "$IDF_PATH/tools/install_util.py" extract features "$args")
|
$FEATURES = (python "$IDF_PATH/tools/install_util.py" extract features "$args")
|
||||||
|
|
||||||
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 --features=${FEATURES}"
|
||||||
$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
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user