From fad85caf74d0e1107dc915eb56fc88e67e88ec9f Mon Sep 17 00:00:00 2001 From: Javier Feliz Date: Mon, 4 Aug 2025 19:33:46 -0400 Subject: [PATCH] Fix test --- app/Console/Commands/GenerateKeys.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Console/Commands/GenerateKeys.php b/app/Console/Commands/GenerateKeys.php index 86bc147..881ff86 100644 --- a/app/Console/Commands/GenerateKeys.php +++ b/app/Console/Commands/GenerateKeys.php @@ -36,7 +36,7 @@ class GenerateKeys extends Command if (file_exists($privatePath) || file_exists($publicPath)) { $this->warn('Keys already exist. Aborting.'); - Command::SUCCESS; + return Command::SUCCESS; } $this->info("Generating RSA key pair...");