Skip to content

Commit

Permalink
fix: workaround BC break in Pimcore 6.9.x
Browse files Browse the repository at this point in the history
  • Loading branch information
dkarlovi authored Apr 21, 2021
1 parent 0884406 commit da902ce
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/ProcessManagerBundle/Process/Pimcore.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,6 @@ function run(ExecutableInterface $executable, array $params = null) {
$settings = $executable->getSettings();
$command = $settings['command'];

$command = PIMCORE_PROJECT_ROOT . "/bin/console " . $command;

return Console::runPhpScriptInBackground($command);
return Console::runPhpScriptInBackground(PIMCORE_PROJECT_ROOT . "/bin/console", $command);
}
}

0 comments on commit da902ce

Please sign in to comment.