From 0f0910ae1393ccf9e3e44b6ec69b4ac5d3f07b4d Mon Sep 17 00:00:00 2001 From: Hojun-Cho Date: Sun, 21 Jun 2026 15:11:25 +0900 Subject: [PATCH] tools: scope sizelint glob off sepwork intermediates (#17) sizelint's find globbed sepwork build intermediates (e.g. *.unit.ww) mid-regen, causing spurious failures under parallel load (impl-f32 and impl-speed both hit it). Prune *.sepwork dirs from the source glob; tracked-source coverage unchanged. --- tools/sizelint | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/sizelint b/tools/sizelint index b0828391..91126894 100755 --- a/tools/sizelint +++ b/tools/sizelint @@ -33,6 +33,7 @@ files=$(find cmd selfhost lib \ \( -type d -name .git -prune \) -o \ \( -type d -name .claude -prune \) -o \ \( -type d -name .ai -prune \) -o \ + \( -type d -name '*.sepwork' -prune \) -o \ \( -type f \( -name '*.c' -o -name '*.h' -o -name '*.ww' \) \ ! -name '*.combined.ww' -print \) )