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.
2 parents 82fa04c + 7acdc85 commit 8d96dd7Copy full SHA for 8d96dd7
src/Filter.php
@@ -115,7 +115,7 @@ private static function transformPipeline(array $pipeline): array
115
$shellCommandLine = null;
116
foreach ($pipeline as $filter) {
117
if ($filter instanceof self) {
118
- $shellCommandLine = ($shellCommandLine === null ? '' : "{$shellCommandLine} | ") . (new Process([
+ $shellCommandLine .= ($shellCommandLine === null ? '' : ' | ') . (new Process([
119
$filter->command,
120
...($filter->options ?? []),
121
]))->getCommandLine();
0 commit comments