공개 런타임 롤백 경계 강화

This commit is contained in:
Yun Chan 2026-08-09 21:57:07 +09:00
parent ff3c79dfc2
commit aaebe4450e
7 changed files with 1271 additions and 30 deletions

View file

@ -19,6 +19,7 @@ $resolvedSourceRoot = (Resolve-Path -LiteralPath $StableSourceRoot).Path
$RegisterScript = Join-Path $resolvedSourceRoot "scripts\register-boot-task.ps1"
$BootScript = Join-Path $resolvedSourceRoot "scripts\boot-public-runtime.ps1"
$StartScript = Join-Path $resolvedSourceRoot "scripts\start-public-runtime.ps1"
$VoiceSidecarProbe = Join-Path $resolvedSourceRoot "scripts\probe-public-voice-sidecars.py"
$UserName = "$env:USERDOMAIN\$env:USERNAME"
function Invoke-GitText {
@ -31,7 +32,7 @@ function Invoke-GitText {
return (@($value) -join [Environment]::NewLine).Trim()
}
foreach ($requiredScript in @($RegisterScript, $BootScript, $StartScript)) {
foreach ($requiredScript in @($RegisterScript, $BootScript, $StartScript, $VoiceSidecarProbe)) {
if (-not (Test-Path -LiteralPath $requiredScript -PathType Leaf)) {
throw "Public runtime script not found: $requiredScript"
}
@ -70,9 +71,10 @@ if ($dirty) {
throw "Stable source is not clean; refusing boot task registration"
}
foreach ($relativePath in @(
"scripts/register-boot-task.ps1",
"scripts/boot-public-runtime.ps1",
"scripts/start-public-runtime.ps1"
"scripts/register-boot-task.ps1",
"scripts/boot-public-runtime.ps1",
"scripts/start-public-runtime.ps1",
"scripts/probe-public-voice-sidecars.py"
)) {
Invoke-GitText -Arguments @("ls-files", "--error-unmatch", "--", $relativePath) | Out-Null
}