2021-08-23 13:14:53 +00:00
|
|
|
//go:build !windows
|
2018-09-05 23:38:25 +00:00
|
|
|
|
2022-10-08 13:28:31 +00:00
|
|
|
package archive
|
2018-09-05 23:38:25 +00:00
|
|
|
|
2021-03-18 20:01:46 +00:00
|
|
|
// checkSystemDriveAndRemoveDriveLetter is the non-Windows implementation
|
|
|
|
// of CheckSystemDriveAndRemoveDriveLetter
|
2022-09-23 00:49:47 +00:00
|
|
|
func checkSystemDriveAndRemoveDriveLetter(path string) (string, error) {
|
2021-03-18 20:01:46 +00:00
|
|
|
return path, nil
|
|
|
|
}
|