mirror of
https://github.com/octoleo/restic.git
synced 2024-11-05 12:57:53 +00:00
15 lines
202 B
Go
15 lines
202 B
Go
// +build !windows
|
|
|
|
package local
|
|
|
|
import (
|
|
"os"
|
|
|
|
"github.com/restic/restic/internal/fs"
|
|
)
|
|
|
|
// set file to readonly
|
|
func setNewFileMode(f string, mode os.FileMode) error {
|
|
return fs.Chmod(f, mode)
|
|
}
|