Skip to content

Commit 0fb34fa

Browse files
authored
fixed bad mkdir call (#259)
Co-authored-by: bhowell2 <[email protected]>
1 parent 90f1687 commit 0fb34fa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup-claude-server.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ async function initConfigFile() {
4444
// Ensure config directory exists
4545
const configDir = path.dirname(CONFIG_FILE);
4646
if (!existsSync(configDir)) {
47-
await mkdir(configDir, { recursive: true });
47+
mkdirSync(configDir, { recursive: true });
4848
}
4949

5050
// Check if config file exists

0 commit comments

Comments
 (0)