2
2
mirror of https://github.com/octoleo/restic.git synced 2024-06-26 20:33:30 +00:00
restic/internal/backend/local/local_unix.go
2017-09-21 21:47:03 +02:00

15 lines
202 B
Go

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