diff --git a/scripts/create-tool.mjs b/scripts/create-tool.mjs index 3032f95..2acbba4 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('.', 0); + recursiveCreate('/', 1); } const toolNameCamelCase = toolName.replace(/-./g, (x) => x[1].toUpperCase());