restic/internal/backend/local/local_unix.go

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)
}