mirror of
https://github.com/tiddly-gittly/TidGi-Desktop.git
synced 2026-03-07 22:40:40 -08:00
595 B
595 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 any open explorer folders, closing them may help.