mirror of
https://github.com/octoleo/restic.git
synced 2024-11-01 03:12:31 +00:00
520b1b65b0
Create separate files with setNewFileMode to avoid runtime checks.
13 lines
191 B
Go
13 lines
191 B
Go
// +build !windows
|
|
|
|
package local
|
|
|
|
import (
|
|
"os"
|
|
)
|
|
|
|
// set file to readonly
|
|
func setNewFileMode(f string, fi os.FileInfo) error {
|
|
return os.Chmod(f, fi.Mode()&os.FileMode(^uint32(0222)))
|
|
}
|