From 4be99528829921438bcbd73221137bf8c32f5d36 Mon Sep 17 00:00:00 2001 From: George Fu Date: Thu, 16 Jan 2025 11:56:15 -0500 Subject: [PATCH] chore(codegen): generate nested clients only if no glob provided (#6813) * chore(codegen): sync nested clients * chore(codegen): generate nested clients only if no glob provided --- scripts/generate-clients/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/generate-clients/index.js b/scripts/generate-clients/index.js index 6508f31f28c8..51cf634112c9 100644 --- a/scripts/generate-clients/index.js +++ b/scripts/generate-clients/index.js @@ -144,7 +144,7 @@ const { require("./customizations/workspaces-thin-client")(); - if (!protocolTestsOnly) { + if (!protocolTestsOnly && !globs) { await generateNestedClients(); }