From 868ae234559b9487001eea25ffc23846df5b7840 Mon Sep 17 00:00:00 2001 From: Brian Madison Date: Sun, 17 Aug 2025 11:01:20 -0500 Subject: [PATCH] fix: previous merge set wrong default install location --- tools/installer/bin/bmad.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/installer/bin/bmad.js b/tools/installer/bin/bmad.js index ed20bdf2..b8272c14 100755 --- a/tools/installer/bin/bmad.js +++ b/tools/installer/bin/bmad.js @@ -216,7 +216,7 @@ async function promptInstallation() { type: 'input', name: 'directory', message: 'Enter the full path to your project directory where BMad should be installed:', - default: process.cwd(), + default: path.resolve('.'), validate: (input) => { if (!input.trim()) { return 'Please enter a valid project path';