ci cross-platform fix: make system_info disk usage helper windows-safe with build tags

This commit is contained in:
DBT
2026-03-01 13:04:58 +00:00
parent 618a8a3723
commit 09a28836ca
3 changed files with 31 additions and 10 deletions

View File

@@ -0,0 +1,7 @@
//go:build windows
package tools
func diskUsageRoot() string {
return ""
}