1
0
mirror of https://github.com/restic/restic.git synced 2024-07-03 08:50:53 +02:00
restic/internal/backend/local/local_unix.go
Alexander Neumann 6caeff2408 Run goimports
2017-07-23 14:21:03 +02:00

15 lines
232 B
Go

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