Skip to content

Commit 03aa35d

Browse files
committed
Fix display of deleted files when reviewing changes in "winter:version"
1 parent 6d59b82 commit 03aa35d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/system/console/WinterVersion.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ public function handle()
101101
$this->line('');
102102
$this->info('Files removed:');
103103

104-
foreach (array_keys($build['changes']['removed']) as $file) {
104+
foreach ($build['changes']['removed'] as $file) {
105105
$this->line(' - ' . $file);
106106
}
107107
}

0 commit comments

Comments
 (0)