mirror of
				https://gitea.com/Lydanne/buildx.git
				synced 2025-11-04 18:13:42 +08:00 
			
		
		
		
	commitc41b006be1updated the version of docker/docker in go.mod, but possibly overlooked that there was still a replace rule present. As a result the version was not actually updated. This patch removes the replace rule, updating docker/docker to 9f28837c1d93 full diff:4634ce647c...9f28837c1dSigned-off-by: Sebastiaan van Stijn <github@gone.nl>
		
			
				
	
	
		
			13 lines
		
	
	
		
			228 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			228 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package mountinfo
 | 
						|
 | 
						|
import "io"
 | 
						|
 | 
						|
func parseMountTable(_ FilterFunc) ([]*Info, error) {
 | 
						|
	// Do NOT return an error!
 | 
						|
	return nil, nil
 | 
						|
}
 | 
						|
 | 
						|
func parseInfoFile(_ io.Reader, f FilterFunc) ([]*Info, error) {
 | 
						|
	return parseMountTable(f)
 | 
						|
}
 |