From 42507da581753270f110d67b9b9e07fc5ec417fb Mon Sep 17 00:00:00 2001 From: Chesterkxng Date: Thu, 10 Apr 2025 08:26:59 +0200 Subject: [PATCH] fix: create tool command for windows users --- 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 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());