You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Avoid 'Directory not empty' race when removing dashboard dir
Replace 'sudo rm -rf ~/dashboard' with an atomic mv-then-delete pattern.
On NFS or overlayfs, rm -rf can race against open file handles (e.g. from
Docker mounts or node processes), causing ENOTEMPTY on core-js and similar
deeply nested node_modules directories.
The mv is atomic on the same filesystem, so the clone can proceed
immediately while the old directory is cleaned up in the background.
0 commit comments