mirror of
https://github.com/bmadcode/BMAD-METHOD.git
synced 2025-12-17 17:55:34 +00:00
single install panel, no clearing disjointed between modules
This commit is contained in:
parent
3cbe330b8e
commit
6513c77d1b
@ -394,11 +394,14 @@ If AgentVibes party mode is enabled, immediately trigger TTS with agent's voice:
|
|||||||
// Clone config to avoid mutating the caller's object
|
// Clone config to avoid mutating the caller's object
|
||||||
const config = { ...originalConfig };
|
const config = { ...originalConfig };
|
||||||
|
|
||||||
// Display BMAD logo
|
// Only display logo if core config wasn't already collected (meaning we're not continuing from UI)
|
||||||
CLIUtils.displayLogo();
|
if (!config.coreConfig) {
|
||||||
|
// Display BMAD logo
|
||||||
|
CLIUtils.displayLogo();
|
||||||
|
|
||||||
// Display welcome message
|
// Display welcome message
|
||||||
CLIUtils.displaySection('BMAD™ Installation', 'Version ' + require(path.join(getProjectRoot(), 'package.json')).version);
|
CLIUtils.displaySection('BMAD™ Installation', 'Version ' + require(path.join(getProjectRoot(), 'package.json')).version);
|
||||||
|
}
|
||||||
|
|
||||||
// Note: Legacy V4 detection now happens earlier in UI.promptInstall()
|
// Note: Legacy V4 detection now happens earlier in UI.promptInstall()
|
||||||
// before any config collection, so we don't need to check again here
|
// before any config collection, so we don't need to check again here
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user