1
0
Fork 0

Fixed another partial update test

pull/8850/head
Yanick Witschi 2020-05-06 23:31:58 +02:00 committed by Jordi Boggiano
parent 7be24dccd9
commit 5a835db24d
No known key found for this signature in database
GPG Key ID: 7BBD42C429EC80BC
1 changed files with 6 additions and 0 deletions

View File

@ -341,6 +341,12 @@ class PoolBuilder
} else { } else {
$this->markPackageNameForLoading($require, $linkConstraint); $this->markPackageNameForLoading($require, $linkConstraint);
} }
} else {
// We also need to load the requirements of a fixed package
// unless it was skipped
if (!isset($this->skippedLoad[$require])) {
$this->markPackageNameForLoading($require, $linkConstraint);
}
} }
} }