From 5bc084123a4286ec5bcf5aeee34a1dbd2116e5c0 Mon Sep 17 00:00:00 2001 From: "Ibrahima G. Coulibaly" Date: Thu, 22 May 2025 17:25:50 +0100 Subject: [PATCH] chore: revert create-tool.mjs --- scripts/create-tool.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/create-tool.mjs b/scripts/create-tool.mjs index 2acbba4..3032f95 100644 --- a/scripts/create-tool.mjs +++ b/scripts/create-tool.mjs @@ -54,7 +54,7 @@ function createFolderStructure(basePath, foldersToCreateIndexCount) { } // Start the recursive folder creation - recursiveCreate('/', 1); + recursiveCreate('.', 0); } const toolNameCamelCase = toolName.replace(/-./g, (x) => x[1].toUpperCase());