path_unix.go 248 B

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