mirror of
https://github.com/espressif/esp-idf.git
synced 2026-04-27 19:13:21 +00:00
feat: Install script help
Closes https://github.com/espressif/esp-idf/issues/11231
This commit is contained in:
+10
@@ -1,6 +1,16 @@
|
||||
#!/usr/bin/env pwsh
|
||||
|
||||
param(
|
||||
[Switch]$h
|
||||
)
|
||||
|
||||
$IDF_PATH = $PSScriptRoot
|
||||
|
||||
if($h){
|
||||
python "$IDF_PATH/tools/install_util.py" print_help ps1
|
||||
Exit
|
||||
}
|
||||
|
||||
$TARGETS = (python "$IDF_PATH/tools/install_util.py" extract targets "$args")
|
||||
|
||||
Write-Output "Installing ESP-IDF tools"
|
||||
|
||||
Reference in New Issue
Block a user