From de51dfb5458c9e8bf2efc0438c8a11b3d17e7951 Mon Sep 17 00:00:00 2001 From: spiritlhl <103393591+spiritLHLS@users.noreply.github.com> Date: Mon, 14 Jul 2025 15:30:31 +0000 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8Dmacos=E8=AF=86?= =?UTF-8?q?=E5=88=AB=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- system/disk.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/disk.go b/system/disk.go index 1fd4f9a..bc946ef 100644 --- a/system/disk.go +++ b/system/disk.go @@ -534,7 +534,7 @@ func shouldExcludeMountPoint(mountPoint string) bool { if strings.Contains(mountPoint, excludePoint) { if strings.Contains(mountPoint, "/run") { if usage, err := disk.Usage(mountPoint); err == nil { - hundredGB := uint64(99 * 1024 * 1024 * 1024) + hundredGB := uint64(100 * 1024 * 1024 * 1024) if usage.Total > hundredGB { return false }