Skip to content

Commit

Permalink
Fix display of deleted files when reviewing changes in "winter:version"
Browse files Browse the repository at this point in the history
  • Loading branch information
bennothommo committed Sep 5, 2024
1 parent 6d59b82 commit 03aa35d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/system/console/WinterVersion.php
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ public function handle()
$this->line('');
$this->info('Files removed:');

foreach (array_keys($build['changes']['removed']) as $file) {
foreach ($build['changes']['removed'] as $file) {
$this->line(' - ' . $file);
}
}
Expand Down

0 comments on commit 03aa35d

Please sign in to comment.