mirror of
https://github.com/docker/docs.git
synced 2026-03-28 23:08:49 +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>
12 lines
140 B
Go
12 lines
140 B
Go
// +build !windows
|
|
|
|
package archive
|
|
|
|
import (
|
|
"path/filepath"
|
|
)
|
|
|
|
func normalizePath(path string) string {
|
|
return filepath.ToSlash(path)
|
|
}
|