Skip to content

Commit 6c3475f

Browse files
committed
fix: remove unused path variable in init.ts
1 parent e1d9b3d commit 6c3475f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/commands/init.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ export async function runInit(options: InitOptions = {}): Promise<void> {
192192
write(` ${chalk.yellow('[·]')} ${CONTEXT_FILENAME} already exists — skipping.\n`);
193193
} else {
194194
const content = await generateContextContent(workspaceRoot);
195-
const path = await writeContextFile(workspaceRoot, content);
195+
await writeContextFile(workspaceRoot, content);
196196
write(` ${chalk.green('✓')} Created ${chalk.cyan(CONTEXT_FILENAME)} for project context.\n`);
197197
}
198198

0 commit comments

Comments
 (0)