From e2e1658c07f6957fea4e3aa9e7657a650205ee71 Mon Sep 17 00:00:00 2001 From: Brian Madison Date: Mon, 16 Jun 2025 19:32:10 -0500 Subject: [PATCH] fix: installer no longer suggests the bmad-method directory as defauly --- tools/installer/bin/bmad.js | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/tools/installer/bin/bmad.js b/tools/installer/bin/bmad.js index 94b183b5..9775f982 100755 --- a/tools/installer/bin/bmad.js +++ b/tools/installer/bin/bmad.js @@ -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;