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 @@ protected function schedule(Schedule $schedule): void ->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(); }