git-lfs/commands/path_nix.go
2017-02-03 17:50:47 -07:00

13 lines
206 B
Go

// +build !windows
package commands
// cleanRootPath is a no-op on every platform except Windows
func cleanRootPath(pattern string) string {
return pattern
}
func osLineEnding() string {
return "\n"
}