Skip to content

Commit 05b9a0f

Browse files
committed
fix(upgrade): add blank lines around changelog in upgrade output
Add a blank line before and after the changelog section in the upgrade command output for better visual separation from the status/metadata block.
1 parent 5faf1dd commit 05b9a0f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib/formatters/human.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2282,7 +2282,7 @@ export function formatUpgradeResult(data: UpgradeResult): string {
22822282
// Append changelog if available
22832283
const changelogOutput = formatChangelog(data);
22842284
if (changelogOutput) {
2285-
return `${result}\n${changelogOutput}`;
2285+
return `${result}\n\n${changelogOutput}\n`;
22862286
}
22872287

22882288
return result;

0 commit comments

Comments
 (0)