From 2b1da883fbd40ef1ea1a69cdff2f5b51e34f2ee6 Mon Sep 17 00:00:00 2001 From: Constantin Graf Date: Fri, 11 Oct 2024 13:10:09 +0200 Subject: [PATCH] Fixed typo in console kernel --- app/Console/Kernel.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Console/Kernel.php b/app/Console/Kernel.php index 587f56e3..00becdf2 100644 --- a/app/Console/Kernel.php +++ b/app/Console/Kernel.php @@ -18,11 +18,11 @@ class Kernel extends ConsoleKernel ->when(fn (): bool => config('scheduling.tasks.time_entry_send_still_running_mails')) ->everyTenMinutes(); - $schedule->command('self-hosting:check-for-update') + $schedule->command('self-host:check-for-update') ->when(fn (): bool => config('scheduling.tasks.self_hosting_check_for_update')) ->twiceDaily(); - $schedule->command('self-hosting:telemetry') + $schedule->command('self-host:telemetry') ->when(fn (): bool => config('scheduling.tasks.self_hosting_telemetry')) ->twiceDaily(); }