10000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fa651b1 commit 732c049Copy full SHA for 732c049
src/Symfony/Component/AssetMapper/ImportMap/RemotePackageDownloader.php
@@ -34,7 +34,11 @@ public function __construct(
34
*/
35
public function downloadPackages(callable $progressCallback = null): array
36
{
37
- $installed = $this->loadInstalled();
+ try {
38
+ $installed = $this->loadInstalled();
39
+ } catch (\LogicException) {
40
+ $installed = [];
41
+ }
42
$entries = $this->importMapConfigReader->getEntries();
43
$remoteEntriesToDownload = [];
44
$newInstalled = [];
0 commit comments