mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-29 10:57:44 +09:00 
			
		
		
		
	fix dump non-exist log directory (#9818)
This commit is contained in:
		
				
					committed by
					
						 techknowlogick
						techknowlogick
					
				
			
			
				
	
			
			
			
						parent
						
							cc2916dc5a
						
					
				
				
					commit
					9f40bb020e
				
			| @@ -151,8 +151,10 @@ func runDump(ctx *cli.Context) error { | |||||||
| 		} | 		} | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
| 	if err := z.AddDir("log", setting.LogRootPath); err != nil { | 	if com.IsExist(setting.LogRootPath) { | ||||||
| 		fatal("Failed to include log: %v", err) | 		if err := z.AddDir("log", setting.LogRootPath); err != nil { | ||||||
|  | 			fatal("Failed to include log: %v", err) | ||||||
|  | 		} | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
| 	if err = z.Close(); err != nil { | 	if err = z.Close(); err != nil { | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user