containerfs_unix.go 226 B

12345678910
  1. // +build !windows
  2. package containerfs
  3. import "path/filepath"
  4. // cleanScopedPath preappends a to combine with a mnt path.
  5. func cleanScopedPath(path string) string {
  6. return filepath.Join(string(filepath.Separator), path)
  7. }