From e164c285470857ee6fda0432b9cca586389637be Mon Sep 17 00:00:00 2001 From: salahhusa9 Date: Sat, 10 Feb 2024 12:09:38 +0100 Subject: [PATCH] wip --- src/Updater.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Updater.php b/src/Updater.php index fafb5f7..50d8fdb 100644 --- a/src/Updater.php +++ b/src/Updater.php @@ -43,7 +43,7 @@ private function updateTo($version): string try { if (config('updater.maintenance_mode', false)) { - $this->output('Maintenance mode is on, turning it on...'); + $this->output('Maintenance mode is on, turning it on'); Artisan::call( 'down', @@ -119,7 +119,7 @@ function ($content) { ); if (config('updater.maintenance_mode', false)) { - $this->output('Maintenance mode is on, turning it off...'); + $this->output('Maintenance mode is on, turning it off'); Artisan::call('up'); } @@ -128,7 +128,7 @@ function ($content) { return 'Updated to version '.$version; } catch (\Throwable $th) { if (config('updater.maintenance_mode', false)) { - $this->output('Maintenance mode is on, turning it off...'); + $this->output('Maintenance mode is on, turning it off'); Artisan::call('up'); }