0
0
forked from toolshed/abra
Files
abra/vendor/github.com/moby/go-archive/path_unix.go
2025-08-12 05:17:15 +00:00

10 lines
248 B
Go

//go:build !windows
package archive
// checkSystemDriveAndRemoveDriveLetter is the non-Windows implementation
// of CheckSystemDriveAndRemoveDriveLetter
func checkSystemDriveAndRemoveDriveLetter(path string) (string, error) {
return path, nil
}