fix bmb workflow paths

This commit is contained in:
Brian Madison
2025-12-10 20:50:24 +09:00
parent 45a97b070a
commit 446a0359ab
336 changed files with 1414 additions and 1509 deletions

View File

@@ -12,7 +12,7 @@ const chalk = require('chalk');
* Find BMAD directory in project
*/
function findBmadDir(projectDir = process.cwd()) {
const possibleNames = ['bmad', '.bmad'];
const possibleNames = ['.bmad'];
for (const name of possibleNames) {
const bmadDir = path.join(projectDir, name);