We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f9da64 commit d81c748Copy full SHA for d81c748
src/SPC/command/BuildPHPCommand.php
@@ -295,6 +295,7 @@ private function parseRules(array $shared_extensions = []): int
295
$rule |= ($this->getOption('build-micro') ? BUILD_TARGET_MICRO : BUILD_TARGET_NONE);
296
$rule |= ($this->getOption('build-fpm') ? BUILD_TARGET_FPM : BUILD_TARGET_NONE);
297
$embed = $this->getOption('build-embed');
298
+ $embed = $embed === null ? true : $embed;
299
if (!$embed && !empty($shared_extensions)) {
300
$embed = true;
301
}
0 commit comments