git-lfs/config/util_windows.go
brian m. carlson 4cf30300ee
config: add a umask lookup function
On Windows, syscall.Umask doesn't exist, and trying to compile with it
doesn't work.  Add two files, controlled by build tags, that return the
umask on Unix systems and return a no-op default on Windows, so that we
can compile on all platforms.
2018-10-09 15:11:17 +00:00

10 lines
210 B
Go

// +build windows
package config
// Windows doesn't provide the umask syscall, so return something sane as a
// default. os.Chmod will only care about the owner bits anyway.
func umask() int {
return 077
}