fix: installer no longer suggests the bmad-method directory as defauly

This commit is contained in:
Brian Madison
2025-06-16 19:32:10 -05:00
parent 595342cb10
commit e2e1658c07

View File

@@ -139,8 +139,13 @@ async function promptInstallation() {
{
type: 'input',
name: 'directory',
message: 'Where would you like to install BMAD?',
default: '.bmad-core'
message: 'Enter the full path to your project directory where BMAD should be installed:',
validate: (input) => {
if (!input.trim()) {
return 'Please enter a valid project path';
}
return true;
}
}
]);
answers.directory = directory;