mirror of
https://github.com/octoleo/restic.git
synced 2024-11-02 11:46:36 +00:00
13 lines
246 B
Go
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
|
|
}
|