2015-07-28 22:55:14 -04:00
|
|
|
// +build !windows
|
|
|
|
|
2018-02-05 16:05:59 -05:00
|
|
|
package archive // import "github.com/docker/docker/pkg/archive"
|
2015-07-28 22:55:14 -04:00
|
|
|
|
|
|
|
import (
|
|
|
|
"path/filepath"
|
|
|
|
)
|
|
|
|
|
|
|
|
func normalizePath(path string) string {
|
|
|
|
return filepath.ToSlash(path)
|
|
|
|
}
|