almost working installer updates

This commit is contained in:
Brian Madison
2025-12-07 15:38:49 -06:00
parent 38e65abd83
commit baaa984a90
9 changed files with 222 additions and 41 deletions

View File

@@ -275,10 +275,9 @@ class Detector {
hasV6Installation = true;
// Don't break - continue scanning to be thorough
} else {
// Not V6+, check if folder name contains "bmad" (case insensitive)
const nameLower = name.toLowerCase();
if (nameLower.includes('bmad')) {
// Potential V4 legacy folder
// Not V6+, check if this is the exact V4 folder name "bmad-method"
if (name === 'bmad-method') {
// This is the V4 default folder - flag it as legacy
potentialV4Folders.push(fullPath);
}
}