1
0
Fork 0

chore(packaging): retry layout cleanup gracefully

This commit is contained in:
Yun Chan 2026-09-03 17:14:09 +09:00
parent 1e7b0e1bcf
commit 7e2e4572d0
2 changed files with 11 additions and 1 deletions

View file

@ -105,6 +105,10 @@ $publishDir = Join-Path $RootDir "publish"
$distDir = Join-Path $RootDir "packaging/dist"
if (-not $DryRun) {
# 0. 실행 중인 인스턴스 중지 (파일 잠금 방지)
Stop-Process -Name "Everything2Everything" -Force -ErrorAction SilentlyContinue
Start-Sleep -Milliseconds 500
# 1. Portable EXE Publish
Write-Host " - Portable 바이너리 빌드 (win-x64 Release)..." -ForegroundColor Gray
dotnet publish (Join-Path $RootDir "src/Everything2Everything.App/Everything2Everything.App.csproj") `