fix: reconcile pre-exclusion .agents installs on claude and codex home upgrades

This commit is contained in:
Affaan Mustafa
2026-09-18 20:13:11 -04:00
parent da214d73b7
commit 8cfbc26797
4 changed files with 389 additions and 2 deletions
+7
View File
@@ -132,6 +132,13 @@ function printHumanPlan(plan, dryRun) {
}
}
if (Array.isArray(plan.reconciledExcludedPaths) && plan.reconciledExcludedPaths.length > 0) {
console.log('\nReconciled excluded paths:');
for (const removedPath of plan.reconciledExcludedPaths) {
console.log(`- removed ${removedPath}`);
}
}
if (!dryRun) {
console.log(`\nDone. Install-state written to ${plan.installStatePath}`);
}