mirror of
https://github.com/docker/cli.git
synced 2026-01-15 07:40:57 +03: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> Upstream-commit: 2a237615c0915b60b8dc6c13a377bb766780ecbf Component: engine
10 lines
122 B
Go
10 lines
122 B
Go
package archive
|
|
|
|
import (
|
|
"path/filepath"
|
|
)
|
|
|
|
func normalizePath(path string) string {
|
|
return filepath.FromSlash(path)
|
|
}
|