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...");