From a0d5b476d3403ab8fe192a3d5c43aaea1b7d2394 Mon Sep 17 00:00:00 2001 From: tw93 Date: Thu, 5 Feb 2026 11:40:00 +0800 Subject: [PATCH] fix(analyze): skip virtualization/container mounts to prevent NFS hangs - Add OrbStack, Colima, Parallels, VMware Fusion, VirtualBox, Rancher Desktop to skip list - Prevent infinite NFS timeout loops when scanning VM/container mount points - Fixes #416 --- cmd/analyze/constants.go | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/cmd/analyze/constants.go b/cmd/analyze/constants.go index fd6591b..36301ab 100644 --- a/cmd/analyze/constants.go +++ b/cmd/analyze/constants.go @@ -187,6 +187,17 @@ var defaultSkipDirs = map[string]bool{ "nfs": true, "PHD": true, "Permissions": true, + + // Virtualization/Container mounts (NFS, network filesystems). + "OrbStack": true, // OrbStack NFS mounts + "Colima": true, // Colima VM mounts + "Parallels": true, // Parallels Desktop VMs + "VMware Fusion": true, // VMware Fusion VMs + "VirtualBox VMs": true, // VirtualBox VMs + "Rancher Desktop": true, // Rancher Desktop mounts + ".lima": true, // Lima VM mounts + ".colima": true, // Colima config/mounts + ".orbstack": true, // OrbStack config/mounts } var skipExtensions = map[string]bool{