mirror of
https://github.com/restic/restic.git
synced 2025-08-11 18:57:40 +00:00
Moves files
This commit is contained in:
13
internal/backend/local/local_unix.go
Normal file
13
internal/backend/local/local_unix.go
Normal file
@@ -0,0 +1,13 @@
|
||||
// +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)))
|
||||
}
|
Reference in New Issue
Block a user