skip files that cant be opened for FixEncryptedVersion

Signed-off-by: Robin Appelman <robin@icewind.nl>
pull/35337/head
Robin Appelman 2022-11-22 16:40:12 +07:00
parent c2cb790532
commit 06b2ed2641
No known key found for this signature in database
GPG Key ID: 42B69D8A64526EFB
1 changed files with 5 additions and 0 deletions

@ -174,6 +174,11 @@ class FixEncryptedVersion extends Command {
*/
$handle = $this->view->fopen($path, 'rb');
if ($handle === false) {
$output->writeln("<warning>Failed to open file: \"$path\" skipping</warning>");
return true;
}
if (\fread($handle, 9001) !== false) {
$fileInfo = $this->view->getFileInfo($path);
if (!$fileInfo) {