git-lfs/commands/path_nix.go

13 lines
206 B
Go
Raw Normal View History

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