blob: 390264bf858051c2ebf3b0ea0cba6e8aed280472 (
plain)
1
2
3
4
5
6
7
8
9
|
//go:build !windows
package archive
// checkSystemDriveAndRemoveDriveLetter is the non-Windows implementation
// of CheckSystemDriveAndRemoveDriveLetter
func checkSystemDriveAndRemoveDriveLetter(path string) (string, error) {
return path, nil
}
|