mirror of
https://github.com/tiddly-gittly/TidGi-Desktop.git
synced 2026-03-11 09:12:05 -07:00
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.
590 B
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.