From c175dac13d025238a13cd1694682e8cfc4f7118d Mon Sep 17 00:00:00 2001 From: jj Date: Mon, 16 Feb 2026 22:19:23 +0000 Subject: [PATCH] build.py: limit max number of namesub workers to 32 --- build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.py b/build.py index e42b0ca..dc034f1 100644 --- a/build.py +++ b/build.py @@ -265,7 +265,7 @@ def main(): asyncio.run(name_substitution.do_substitution( source_tree, tarpath=None, - workers=os.cpu_count() + workers=min(32, os.cpu_count()) )) else: print("Apply patches using quilt, then press Enter")