Skip to content

Commit 18c36fb

Browse files
Merge pull request #59 from dkarlovi/patch-1
fix: workaround BC break in Pimcore 6.9.x
2 parents 0884406 + da902ce commit 18c36fb

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

src/ProcessManagerBundle/Process/Pimcore.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,6 @@ function run(ExecutableInterface $executable, array $params = null) {
2626
$settings = $executable->getSettings();
2727
$command = $settings['command'];
2828

29-
$command = PIMCORE_PROJECT_ROOT . "/bin/console " . $command;
30-
31-
return Console::runPhpScriptInBackground($command);
29+
return Console::runPhpScriptInBackground(PIMCORE_PROJECT_ROOT . "/bin/console", $command);
3230
}
3331
}

0 commit comments

Comments
 (0)