13 lines
173 B
Go
13 lines
173 B
Go
//go:build windows
|
|
|
|
package main
|
|
|
|
import (
|
|
"path/filepath"
|
|
"strings"
|
|
)
|
|
|
|
func normalizeRestrictedPath(path string) string {
|
|
return strings.ToLower(filepath.Clean(path))
|
|
}
|