Forráskód Böngészése

Update GenerateInstanceActor command

Daniel Supernault 3 éve
szülő
commit
2b7c8dd1e5
1 módosított fájl, 2 hozzáadás és 4 törlés
  1. 2 4
      app/Console/Commands/GenerateInstanceActor.php

+ 2 - 4
app/Console/Commands/GenerateInstanceActor.php

@@ -29,9 +29,6 @@ class GenerateInstanceActor extends Command
 		}
 
 		if(InstanceActor::exists()) {
-			$this->line(' ');
-			$this->error('Instance actor already exists!');
-			$this->line(' ');
 			$actor = InstanceActor::whereNotNull('public_key')
 				->whereNotNull('private_key')
 				->firstOrFail();
@@ -42,7 +39,8 @@ class GenerateInstanceActor extends Command
 			Cache::rememberForever(InstanceActor::PKI_PRIVATE, function() use($actor) {
 				return $actor->private_key;
 			});
-			exit;
+			$this->info('Instance actor succesfully generated. You do not need to run this command again.');
+			return;
 		}
 
 		$pkiConfig = [