1
0
Fork 0

Fix require command crashing at the end if no lock file is present, fixes #11814

pull/11895/head
Jordi Boggiano 2024-02-06 13:46:46 +01:00
parent bff129f4f5
commit ef6c224ec2
No known key found for this signature in database
GPG Key ID: 7BBD42C429EC80BC
1 changed files with 9 additions and 7 deletions

View File

@ -558,6 +558,7 @@ EOT
throw new \RuntimeException('Unable to read '.$this->json->getPath().' contents to update the lock file hash.'); throw new \RuntimeException('Unable to read '.$this->json->getPath().' contents to update the lock file hash.');
} }
$lockFile = Factory::getLockFile($this->json->getPath()); $lockFile = Factory::getLockFile($this->json->getPath());
if (file_exists($lockFile)) {
$lockMtime = filemtime($lockFile); $lockMtime = filemtime($lockFile);
$lock = new JsonFile($lockFile); $lock = new JsonFile($lockFile);
$lockData = $lock->read(); $lockData = $lock->read();
@ -568,6 +569,7 @@ EOT
} }
} }
} }
}
return 0; return 0;
} }