clean up comments

This commit is contained in:
Wendy Smoak 2026-02-14 19:07:49 -05:00
parent 44f07bf341
commit fcf781fa39
1 changed files with 0 additions and 2 deletions

View File

@ -318,7 +318,6 @@ class CodexSetup extends BaseIdeSetup {
/** /**
* Remove existing BMAD skill directories from the skills directory. * Remove existing BMAD skill directories from the skills directory.
* Handles both old flat files and new skill directories.
*/ */
async clearOldBmadSkills(destDir, options = {}) { async clearOldBmadSkills(destDir, options = {}) {
if (!(await fs.pathExists(destDir))) { if (!(await fs.pathExists(destDir))) {
@ -349,7 +348,6 @@ class CodexSetup extends BaseIdeSetup {
const entryPath = path.join(destDir, entry); const entryPath = path.join(destDir, entry);
try { try {
// fs.remove handles both files and directories
await fs.remove(entryPath); await fs.remove(entryPath);
} catch (error) { } catch (error) {
if (!options.silent) { if (!options.silent) {