mirror of
https://github.com/octoleo/restic.git
synced 2024-11-01 03:12:31 +00:00
520b1b65b0
Create separate files with setNewFileMode to avoid runtime checks.
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
|
|
}
|