mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-11-23 12:16:38 +00: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
|
||
|
}
|