10 lines
138 B
Go
10 lines
138 B
Go
//go:build linux
|
|
|
|
package main
|
|
|
|
import "path/filepath"
|
|
|
|
func normalizeRestrictedPath(path string) string {
|
|
return filepath.Clean(path)
|
|
}
|