path_unix.go 267 B

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