Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 30d48351 authored by Jingwen Chen's avatar Jingwen Chen
Browse files

mk2rbc: temporarily bump matching paths limit to 155.

It was 150, but an internal change bumped up the usage to 153. Temporarily increase it to fix build break.

Bug: b/284854738

Change-Id: I23478f4c5333c5ef1ad344aadafe5803685c5d92
Test: abtd 
Test: treehugger
parent e5641c51
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -870,7 +870,7 @@ func (ctx *parseContext) handleSubConfig(
	}

	// Safeguard against $(call inherit-product,$(PRODUCT_PATH))
	const maxMatchingFiles = 150
	const maxMatchingFiles = 155 // temporarily increased to 155 for b/284854738
	if len(matchingPaths) > maxMatchingFiles {
		return []starlarkNode{ctx.newBadNode(v, "there are >%d files matching the pattern, please rewrite it", maxMatchingFiles)}
	}