mirror of
https://github.com/docker/docs.git
synced 2026-03-28 14:58:53 +07:00
Signed-off-by: John Howard <jhoward@microsoft.com> Conflicts: pkg/archive/copy.go Make it compile Signed-off-by: John Howard <jhoward@microsoft.com>
10 lines
122 B
Go
10 lines
122 B
Go
package archive
|
|
|
|
import (
|
|
"path/filepath"
|
|
)
|
|
|
|
func normalizePath(path string) string {
|
|
return filepath.FromSlash(path)
|
|
}
|