aboutsummaryrefslogtreecommitdiffhomepage
path: root/vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/archive/copy_unix.go
blob: e305b5e4af9118bc41af56e560720ce1cc2a7888 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
// +build !windows

package archive

import (
	"path/filepath"
)

func normalizePath(path string) string {
	return filepath.ToSlash(path)
}