boxdd: Fix linux permission

This commit is contained in:
世界
2026-07-19 17:30:59 +08:00
parent 77d9c07d2f
commit 552994b6ca
22 changed files with 747 additions and 214 deletions
@@ -0,0 +1,9 @@
//go:build linux
package main
import "path/filepath"
func normalizeRestrictedPath(path string) string {
return filepath.Clean(path)
}