2
2
mirror of https://github.com/octoleo/restic.git synced 2024-06-07 11:30:49 +00:00
restic/internal/backend/local/local_windows.go

13 lines
248 B
Go
Raw Normal View History

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
}