2022-09-24 18:34:14 +05:30
|
|
|
// Copyright 2022 The Gitea Authors. All rights reserved.
|
2022-11-27 23:50:29 +05:30
|
|
|
// SPDX-License-Identifier: MIT
|
2022-09-24 18:34:14 +05:30
|
|
|
|
|
|
|
//go:build windows
|
|
|
|
|
|
|
|
package util
|
|
|
|
|
|
|
|
import (
|
|
|
|
"os"
|
|
|
|
)
|
|
|
|
|
|
|
|
func ApplyUmask(f string, newMode os.FileMode) error {
|
|
|
|
// do nothing for Windows, because Windows doesn't use umask
|
|
|
|
return nil
|
|
|
|
}
|