restic/internal/backend/local/local_unix.go
Alexander Neumann 83d1a46526 Moves files
2017-07-23 14:19:13 +02:00

14 lines
204 B
Go

// +build !windows
package local
import (
"os"
"restic/fs"
)
// set file to readonly
func setNewFileMode(f string, fi os.FileInfo) error {
return fs.Chmod(f, fi.Mode()&os.FileMode(^uint32(0222)))
}