2023-03-15 16:00:52 +00:00
|
|
|
// Copyright (c) HashiCorp, Inc.
|
|
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
|
2022-04-04 16:45:41 +00:00
|
|
|
//go:build windows
|
|
|
|
|
|
|
|
package osutil
|
|
|
|
|
|
|
|
import (
|
|
|
|
"io/fs"
|
|
|
|
)
|
|
|
|
|
|
|
|
func FileUidMatch(info fs.FileInfo, path string, uid int) error {
|
|
|
|
return nil
|
|
|
|
}
|
2022-04-12 00:38:28 +00:00
|
|
|
|
|
|
|
// Umask does nothing for windows for now
|
|
|
|
func Umask(newmask int) int {
|
|
|
|
return 0
|
|
|
|
}
|