chore: remove some Windows-specific files

This commit is contained in:
0ko 2024-09-19 20:29:34 +05:00
parent b4e88cb0b7
commit d7aa109dc6
8 changed files with 0 additions and 291 deletions

View file

@ -1,15 +0,0 @@
// Copyright 2022 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT
//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
}