Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
salahhusa9 committed Feb 10, 2024
1 parent 2f67f0c commit e164c28
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Updater.php
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down Expand Up @@ -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');
}

Expand All @@ -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');
}

Expand Down

0 comments on commit e164c28

Please sign in to comment.