pdca0-dev-hub/cmd/pdca0-fe.ps1
Alessandro Seravalli 983291082c Refactor batch scripts and cleanup
- Refactored `cmd/build-commit.bat` and `cmd/release-commit.bat` to improve commit message handling and force push logic.
- Deleted obsolete `cmd/pdca0-fe.bat`.
- Added new command: `cmd/pdca0-fe.ps1`, that uses the new script implementation of the old `cmd/pdca0-fe.bat` using the `src/darwin/frontend` scripts folder.
- Removed unused or obsolete files.
2025-08-07 23:15:44 +02:00

11 lines
261 B
PowerShell

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