diff options
Diffstat (limited to 'vendor/github.com/moby/go-archive/path_unix.go')
| -rw-r--r-- | vendor/github.com/moby/go-archive/path_unix.go | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/vendor/github.com/moby/go-archive/path_unix.go b/vendor/github.com/moby/go-archive/path_unix.go new file mode 100644 index 0000000..390264b --- /dev/null +++ b/vendor/github.com/moby/go-archive/path_unix.go @@ -0,0 +1,9 @@ +//go:build !windows + +package archive + +// checkSystemDriveAndRemoveDriveLetter is the non-Windows implementation +// of CheckSystemDriveAndRemoveDriveLetter +func checkSystemDriveAndRemoveDriveLetter(path string) (string, error) { + return path, nil +} |
