Files
server/runner/umask_fallback.go
饺子w (Yumechi) c81a9a2c88 Set umask=0 when creating unix sockets (#743)
Signed-off-by: eternal-flame-AD <yume@yumechi.jp>
2024-11-22 18:03:58 +00:00

8 lines
70 B
Go

//go:build !unix
package runner
func umask(_ int) int {
return 0
}