mirror of
https://gitea.com/Lydanne/buildx.git
synced 2025-05-18 09:17:49 +08:00
10 lines
248 B
Go
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
|
|
}
|