mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-31 03:25:11 +01:00 
			
		
		
		
	Ignore temporary files for directory size (#28265)
Co-authored-by: Gusted <postmaster@gusted.xyz>
This commit is contained in:
		
							parent
							
								
									05b8023667
								
							
						
					
					
						commit
						cb8298b717
					
				| @ -167,7 +167,11 @@ func getDirectorySize(path string) (int64, error) { | ||||
| 			} | ||||
| 			return err | ||||
| 		} | ||||
| 		if info.IsDir() { | ||||
| 
 | ||||
| 		fileName := info.Name() | ||||
| 		// Ignore temporary Git files as they will like be missing once info.Info is | ||||
| 		// called and cause a disrupt to the whole operation. | ||||
| 		if info.IsDir() || strings.HasSuffix(fileName, ".lock") || strings.HasPrefix(filepath.Base(fileName), "tmp_graph") { | ||||
| 			return nil | ||||
| 		} | ||||
| 		f, err := info.Info() | ||||
|  | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user