Skip to content

Commit 7e8b0f4

Browse files
committed
MQE-1673: command.php truncating values '0'
- added argument array to command array, additional bugfix.
1 parent 004becc commit 7e8b0f4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

etc/config/command.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
$commandParts = array_filter(explode(" ", $command), 'strlen');
2727
$argumentParts = array_filter(explode(" ", $arguments), 'strlen');
2828
$magentoBinaryParts = array_filter(explode(" ", $magentoBinary), 'strlen');
29-
$commandArray = array_merge($magentoBinaryParts, $commandParts);
29+
$commandArray = array_merge($magentoBinaryParts, $commandParts, $argumentParts);
3030
$process = new Symfony\Component\Process\Process($commandArray);
3131
$process->setIdleTimeout(60);
3232
$process->setTimeout(0);

0 commit comments

Comments
 (0)