mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-14 04:39:33 +00:00
9 lines
248 B
Go
9 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
|
|
}
|