github.com/git-lfs/git-lfs@v2.5.2+incompatible/commands/path_nix.go (about)

     1  // +build !windows
     2  
     3  package commands
     4  
     5  // cleanRootPath is a no-op on every platform except Windows
     6  func cleanRootPath(pattern string) string {
     7  	return pattern
     8  }
     9  
    10  func osLineEnding() string {
    11  	return "\n"
    12  }