1
0
mirror of https://github.com/restic/restic.git synced 2024-06-27 07:55:08 +02:00
restic/internal/backend/local/local_unix.go

15 lines
202 B
Go
Raw Normal View History

// +build !windows
package local
import (
"os"
2017-07-23 14:21:03 +02:00
"github.com/restic/restic/internal/fs"
)
// set file to readonly
func setNewFileMode(f string, mode os.FileMode) error {
return fs.Chmod(f, mode)
}