blob: 6a99459517dd821c5e5f0650348250e45f7c2455 [file] [log] [blame]
// +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)
}