github.com/toplink-cn/moby@v0.0.0-20240305205811-460b4aebdf81/pkg/archive/path_unix.go (about)

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