From 2df113cf5fcdbed50316e4801a850320925aa749 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A5rten=20Angner?= Date: Sun, 1 Mar 2026 15:50:50 +0100 Subject: [PATCH] Fix legacy migration not moving _wds/ to _bmad/wds/ wdsFolder was initialized from detection.folder ('_wds') but the migrate-update branch never reassigned it to WDS_FOLDER ('_bmad/wds'). This caused the migration check (wdsFolder !== '_wds') to be false, silently skipping the folder move. Co-Authored-By: Claude Opus 4.6 --- tools/cli/lib/ui.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/cli/lib/ui.js b/tools/cli/lib/ui.js index 4fe655565..f8448dbbf 100644 --- a/tools/cli/lib/ui.js +++ b/tools/cli/lib/ui.js @@ -84,7 +84,7 @@ class UI { if (choice === 'migrate-update') { action = 'update'; - // wdsFolder stays as WDS_FOLDER (_bmad/wds) + wdsFolder = WDS_FOLDER; } else if (choice === 'legacy-update') { action = 'update'; wdsFolder = LEGACY_WDS_FOLDER;