TidGi-Desktop/docs/ErrorDuringRelease.md
lin onetwo c8212dca9b Refactor Tidgi mini window initialization logic
Tidgi mini window creation now only creates the window; view creation is deferred to initializeAllWorkspaceView. Updated related comments and logging for clarity. Also fixed formatting in French translations and improved documentation for error handling during release.
2026-01-21 23:16:48 +08:00

590 B

Deal with errors during release build

EBUSY: resource busy or locked during make

Error: EBUSY: resource busy or locked, unlink 'i:\Temp\...\tidgi.0.13.0-prerelease18.nupkg'

esbuild process doesn't exit properly after packaging, holding file handles to temp files.

Solution: kill background esbuild process

Get-Process | Where-Object { $_.ProcessName -match "esbuild|electron" } | Stop-Process -Force
Remove-Item "$env:TEMP\si-*" -Recurse -Force -ErrorAction SilentlyContinue

Also check if there are open explorer folder opened, close may help.