mirror of
https://github.com/octoleo/restic.git
synced 2024-11-02 11:46:36 +00:00
15 lines
232 B
Go
15 lines
232 B
Go
// +build !windows
|
|
|
|
package local
|
|
|
|
import (
|
|
"os"
|
|
|
|
"github.com/restic/restic/internal/fs"
|
|
)
|
|
|
|
// set file to readonly
|
|
func setNewFileMode(f string, fi os.FileInfo) error {
|
|
return fs.Chmod(f, fi.Mode()&os.FileMode(^uint32(0222)))
|
|
}
|