Skip to content

Commit

Permalink
fix: output of downgraded plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
mdonnalley committed Apr 27, 2022
1 parent c7d36b2 commit 8097882
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/cli/releasenotes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ export default class ReleaseNotes extends SfdxCommand {
if (isNotEmpty(differences.downgraded)) {
this.ux.styledHeader('Downgraded Plugins');
for (const [plugin, version] of Object.entries(differences.downgraded)) {
this.ux.log(`• ${plugin} ${version} => ${oldPlugins[plugin]}`);
this.ux.log(`• ${plugin} ${oldPlugins[plugin]} => ${version}`);
}
}

Expand Down

0 comments on commit 8097882

Please sign in to comment.