mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-31 09:31:53 +01:00 
			
		
		
		
	Allow empty Conan files (#27092)
Fixes #27090 Looks like the Conan upload process has changed since last year. The empty uploads don't occur anymore.
This commit is contained in:
		
							parent
							
								
									e5ec57cd60
								
							
						
					
					
						commit
						d513628db9
					
				| @ -326,13 +326,8 @@ func uploadFile(ctx *context.Context, fileFilter container.Set[string], fileKey | ||||
| 	} | ||||
| 	defer buf.Close() | ||||
| 
 | ||||
| 	if buf.Size() == 0 { | ||||
| 		// ignore empty uploads, second request contains content | ||||
| 		jsonResponse(ctx, http.StatusOK, nil) | ||||
| 		return | ||||
| 	} | ||||
| 
 | ||||
| 	isConanfileFile := filename == conanfileFile | ||||
| 	isConaninfoFile := filename == conaninfoFile | ||||
| 
 | ||||
| 	pci := &packages_service.PackageCreationInfo{ | ||||
| 		PackageInfo: packages_service.PackageInfo{ | ||||
| @ -364,7 +359,7 @@ func uploadFile(ctx *context.Context, fileFilter container.Set[string], fileKey | ||||
| 		pfci.Properties[conan_module.PropertyPackageRevision] = pref.RevisionOrDefault() | ||||
| 	} | ||||
| 
 | ||||
| 	if isConanfileFile || filename == conaninfoFile { | ||||
| 	if isConanfileFile || isConaninfoFile { | ||||
| 		if isConanfileFile { | ||||
| 			metadata, err := conan_module.ParseConanfile(buf) | ||||
| 			if err != nil { | ||||
|  | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user