fb77973201
This one is a "bit" fuzzy, as it may not be _directly_ related to `archive`, but it's always used _in combination_ with the archive package, so moving it there. Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
10 lines
267 B
Go
10 lines
267 B
Go
//go:build !windows
|
|
// +build !windows
|
|
|
|
package archive
|
|
|
|
// checkSystemDriveAndRemoveDriveLetter is the non-Windows implementation
|
|
// of CheckSystemDriveAndRemoveDriveLetter
|
|
func checkSystemDriveAndRemoveDriveLetter(path string) (string, error) {
|
|
return path, nil
|
|
}
|