mirror of
				https://github.com/restic/restic.git
				synced 2025-10-31 21:31:00 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
	
		
			232 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			14 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)))
 | |
| }
 | 
