|
|
@ -43,12 +43,9 @@ class AssetsInstallTask extends AbstractTask |
|
|
|
|
|
|
|
|
|
|
|
protected function getOptions() |
|
|
|
protected function getOptions() |
|
|
|
{ |
|
|
|
{ |
|
|
|
$userGlobalOptions = $this->runtime->getConfigOption('symfony', []); |
|
|
|
|
|
|
|
$userEnvOptions = $this->runtime->getEnvOption('symfony', []); |
|
|
|
|
|
|
|
$options = array_merge( |
|
|
|
$options = array_merge( |
|
|
|
['console' => 'bin/console', 'env' => 'dev', 'target' => 'web', 'flags' => '--symlink --relative'], |
|
|
|
['console' => 'bin/console', 'env' => 'dev', 'target' => 'web', 'flags' => '--symlink --relative'], |
|
|
|
(is_array($userGlobalOptions) ? $userGlobalOptions : []), |
|
|
|
$this->runtime->getMergedEnvAndConfigOption('symfony', [], []), |
|
|
|
(is_array($userEnvOptions) ? $userEnvOptions : []), |
|
|
|
|
|
|
|
$this->options |
|
|
|
$this->options |
|
|
|
); |
|
|
|
); |
|
|
|
|
|
|
|
|
|
|
|