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 004becc commit 7e8b0f4Copy full SHA for 7e8b0f4
etc/config/command.php
@@ -26,7 +26,7 @@
26
$commandParts = array_filter(explode(" ", $command), 'strlen');
27
$argumentParts = array_filter(explode(" ", $arguments), 'strlen');
28
$magentoBinaryParts = array_filter(explode(" ", $magentoBinary), 'strlen');
29
- $commandArray = array_merge($magentoBinaryParts, $commandParts);
+ $commandArray = array_merge($magentoBinaryParts, $commandParts, $argumentParts);
30
$process = new Symfony\Component\Process\Process($commandArray);
31
$process->setIdleTimeout(60);
32
$process->setTimeout(0);
0 commit comments