mirror of
https://github.com/superseriousbusiness/gotosocial
synced 2025-01-07 13:52:22 +01:00
15 lines
212 B
Go
15 lines
212 B
Go
|
//go:build !unix || sqlite3_nosys
|
||
|
|
||
|
package vfs
|
||
|
|
||
|
import "os"
|
||
|
|
||
|
func osSetMode(file *os.File, modeof string) error {
|
||
|
fi, err := os.Stat(modeof)
|
||
|
if err != nil {
|
||
|
return err
|
||
|
}
|
||
|
file.Chmod(fi.Mode())
|
||
|
return nil
|
||
|
}
|