buildkit/cmd/buildkitd/main_unix.go

12 lines
91 B
Go

// +build !windows
package main
import (
"syscall"
)
func init() {
syscall.Umask(0)
}