mirror of
https://github.com/restic/restic.git
synced 2024-12-26 01:37:12 +00:00
520b1b65b0
Create separate files with setNewFileMode to avoid runtime checks.
12 lines
246 B
Go
12 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
|
|
}
|