We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 90f1687 commit 0fb34faCopy full SHA for 0fb34fa
setup-claude-server.js
@@ -44,7 +44,7 @@ async function initConfigFile() {
44
// Ensure config directory exists
45
const configDir = path.dirname(CONFIG_FILE);
46
if (!existsSync(configDir)) {
47
- await mkdir(configDir, { recursive: true });
+ mkdirSync(configDir, { recursive: true });
48
}
49
50
// Check if config file exists
0 commit comments