code.gitea.io/gitea@v1.19.3/modules/util/file_windows.go (about) 1 // Copyright 2022 The Gitea Authors. All rights reserved. 2 // SPDX-License-Identifier: MIT 3 4 //go:build windows 5 6 package util 7 8 import ( 9 "os" 10 ) 11 12 func ApplyUmask(f string, newMode os.FileMode) error { 13 // do nothing for Windows, because Windows doesn't use umask 14 return nil 15 }