2021-08-23 13:14:53 +00:00
|
|
|
//go:build !windows
|
2017-08-04 00:22:00 +00:00
|
|
|
|
2018-02-05 21:05:59 +00:00
|
|
|
package containerfs // import "github.com/docker/docker/pkg/containerfs"
|
2017-08-04 00:22:00 +00:00
|
|
|
|
|
|
|
import "path/filepath"
|
|
|
|
|
2022-09-23 00:17:25 +00:00
|
|
|
// CleanScopedPath preappends a to combine with a mnt path.
|
|
|
|
func CleanScopedPath(path string) string {
|
2017-08-04 00:22:00 +00:00
|
|
|
return filepath.Join(string(filepath.Separator), path)
|
|
|
|
}
|