pdca0-dev-hub/cmd/pdca0-conf.ps1

11 lines
272 B
PowerShell

# Avvia la UI di configurazione PDCA0
$scriptPath = Resolve-Path (Join-Path $PSScriptRoot '../src/darwin/setup-conf/setup-conf.ps1')
if (Test-Path $scriptPath) {
& $scriptPath
} else {
Write-Host "File non trovato: $scriptPath" -ForegroundColor Red
exit 1
}