@crazywhalecc how to use patch points to delete source dirs?

This commit is contained in:
henderkes
2025-12-18 12:35:06 +01:00
parent 0247458853
commit ce44e00bd4
2 changed files with 8 additions and 5 deletions

View File

@@ -385,6 +385,9 @@ class Extension
logger()->info('Shared extension [' . $this->getName() . '] was already built, skipping (' . $this->getName() . '.so)');
return;
}
if (Config::getExt($this->getName(), 'type') === 'addon') {
return;
}
logger()->info('Building extension [' . $this->getName() . '] as shared extension (' . $this->getName() . '.so)');
foreach ($this->dependencies as $dependency) {
if (!$dependency instanceof Extension) {