Adapt run-command for console.php executions

This commit is contained in:
Philipp 2025-01-02 20:53:16 +01:00
parent c79f0c83a7
commit eb0c38f90f
No known key found for this signature in database
GPG key ID: 24A7501396EB5432
3 changed files with 10 additions and 5 deletions

View file

@ -115,7 +115,7 @@ class Daemon
private static function spawn()
{
Logger::notice('Starting new daemon process');
DI::system()->run('bin/console.php daemon', ['start']);
DI::system()->run('bin/console.php', ['start']);
Logger::notice('New daemon process started');
}
}