2
2
mirror of https://github.com/octoleo/restic.git synced 2024-06-28 13:23:29 +00:00
restic/internal/backend/local/local_windows.go
Alexander Neumann 83d1a46526 Moves files
2017-07-23 14:19:13 +02:00

13 lines
246 B
Go

package local
import (
"os"
)
// We don't modify read-only on windows,
// since it will make us unable to delete the file,
// and this isn't common practice on this platform.
func setNewFileMode(f string, fi os.FileInfo) error {
return nil
}