11 lines
282 B
PowerShell
11 lines
282 B
PowerShell
# Avvia la UI di configurazione PDCA0
|
|
|
|
$scriptPath = Resolve-Path (Join-Path $PSScriptRoot '../src/darwin/frontend/ui-update-npm-versions.ps1')
|
|
|
|
if (Test-Path $scriptPath) {
|
|
& $scriptPath
|
|
} else {
|
|
Write-Host "File non trovato: $scriptPath" -ForegroundColor Red
|
|
exit 1
|
|
}
|