1
0
Fork 0
mirror of https://github.com/restic/restic.git synced 2024-12-22 15:57:07 +00:00
restic/internal/backend/local/local_windows.go
2017-09-21 21:47:03 +02:00

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