2 Commits

Author SHA1 Message Date
Jean-Baptiste Nahan
ea4d608cbb Create FUNDING.yml 2022-09-29 09:18:09 +02:00
macintoshplus
ca37fe5249 fix error message 2022-09-08 09:30:20 +02:00
2 changed files with 2 additions and 1 deletions

1
.github/FUNDING.yml vendored Normal file
View File

@@ -0,0 +1 @@
github: [macintoshplus]

View File

@@ -89,7 +89,7 @@ class ExecuteServiceCommand extends Command
$runner = $this->service->getRunner($infos['service_id']);
if ($runner === null) {
throw new \Exception(sprintf('The runner for service "%1$s" is not found. Add tag "win32service.runner" with alias "%1$s" at the service runner service', $infos['service_id']));
throw new \Exception(sprintf('The runner for service "%1$s" is not found. Call method \'add\' on the RunnerManager with the runner instance and the alias "%1$s".', $infos['service_id']));
}
if ($this->eventDispatcher !== null) {