blob: 3e185999893b0eaf436d6d906cacefd753971e4b (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
//go:build !windows
// +build !windows
package containerfs // import "github.com/docker/docker/pkg/containerfs"
import "path/filepath"
// CleanScopedPath preappends a to combine with a mnt path.
func CleanScopedPath(path string) string {
return filepath.Join(string(filepath.Separator), path)
}
|