- 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.
11 lines
261 B
PowerShell
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
|
|
}
|