We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e1d9b3d commit 6c3475fCopy full SHA for 6c3475f
1 file changed
src/commands/init.ts
@@ -192,7 +192,7 @@ export async function runInit(options: InitOptions = {}): Promise<void> {
192
write(` ${chalk.yellow('[·]')} ${CONTEXT_FILENAME} already exists — skipping.\n`);
193
} else {
194
const content = await generateContextContent(workspaceRoot);
195
- const path = await writeContextFile(workspaceRoot, content);
+ await writeContextFile(workspaceRoot, content);
196
write(` ${chalk.green('✓')} Created ${chalk.cyan(CONTEXT_FILENAME)} for project context.\n`);
197
}
198
0 commit comments