trust filesystem, not downloads

This commit is contained in:
henderkes
2026-05-12 10:38:33 +07:00
parent 270e2d6471
commit c1c34d8c10
4 changed files with 48 additions and 2 deletions

View File

@@ -344,7 +344,7 @@ class PackageInstaller
if ($this->isBuildPackage($package)) {
return $package->isInstalled();
}
if ($package->getArtifact() !== null && $package->getArtifact()->shouldUseBinary()) {
if ($package->getArtifact() !== null && $package->getArtifact()->hasPlatformBinary()) {
$artifact = $package->getArtifact();
return $artifact->isBinaryExtracted();
}