2020-05-13 12:00:38 +00:00
|
|
|
#!/usr/bin/env pwsh
|
2019-08-27 05:45:50 +00:00
|
|
|
$IDF_PATH = $PSScriptRoot
|
|
|
|
|
|
|
|
|
|
|
|
Write-Output "Installing ESP-IDF tools"
|
2020-05-13 12:00:38 +00:00
|
|
|
Start-Process -Wait -NoNewWindow -FilePath "python" -Args "$IDF_PATH/tools/idf_tools.py install"
|
2019-08-27 05:45:50 +00:00
|
|
|
if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE } # if error
|
|
|
|
|
|
|
|
Write-Output "Setting up Python environment"
|
2020-05-13 12:00:38 +00:00
|
|
|
Start-Process -Wait -NoNewWindow -FilePath "python" -Args "$IDF_PATH/tools/idf_tools.py install-python-env"
|
2019-08-27 05:45:50 +00:00
|
|
|
if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE} # if error
|
|
|
|
|
|
|
|
|
|
|
|
Write-Output "
|
|
|
|
All done! You can now run:
|
|
|
|
export.ps1
|
|
|
|
"
|