1
0

Delete some residual files

This commit is contained in:
Richard Dern 2024-05-03 16:16:01 +02:00
parent bbd0f8ddef
commit a3ee7d10a8

View File

@ -80,6 +80,17 @@ public function handle()
$bundle->save();
$toDelete = [
'attachments.json',
'index.json',
'metadata.json',
'links.json',
];
foreach ($toDelete as $file) {
$bundle->getDisk()->delete($bundle->getPath() . $file);
}
$this->info('OK');
}
}