1
0
mirror of https://github.com/restic/restic.git synced 2024-06-28 08:00:52 +02:00
restic/internal/backend/local/local_windows.go
2017-09-21 21:47:03 +02:00

13 lines
248 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, mode os.FileMode) error {
return nil
}