Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

file_windows.go 274B

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