mirror of
https://github.com/moby/buildkit.git
synced 2025-04-18 18:04:03 +03:00
11 lines
201 B
Go
11 lines
201 B
Go
//go:build !windows
|
|
|
|
package git
|
|
|
|
import "syscall"
|
|
|
|
func init() {
|
|
// Reset umask to zero to match buildkitd and to make sure the tests do not rely on standard umask from the host.
|
|
syscall.Umask(0)
|
|
}
|