From 709cc8e38dc9dbe4bb634002ef1c9f19c849ecac Mon Sep 17 00:00:00 2001 From: Caen De Silva Date: Wed, 17 Apr 2024 17:58:21 +0200 Subject: [PATCH] Verify the application version --- app/Commands/SelfUpdateCommand.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/Commands/SelfUpdateCommand.php b/app/Commands/SelfUpdateCommand.php index be89ab10..b3bc0639 100644 --- a/app/Commands/SelfUpdateCommand.php +++ b/app/Commands/SelfUpdateCommand.php @@ -99,6 +99,9 @@ public function handle(): int $this->info('The application has been updated successfully.'); + // Verify the application version + passthru('hyde --version'); + return Command::SUCCESS; } catch (Throwable $exception) { $this->output->error('Something went wrong while updating the application!');