Skip to content

Commit

Permalink
Fixed typo in self hosting command
Browse files Browse the repository at this point in the history
  • Loading branch information
korridor committed May 22, 2024
1 parent 280d778 commit c888ac7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/Console/Commands/SelfHost/SelfHostGenerateKeys.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ public function handle(): int

if ($format === 'env') {
$this->line('APP_KEY="'.$appKey.'"');
$this->line('PASSPORT_PRIVATE_KEY="'.$publicKey.'"');
$this->line('PASSPORT_PUBLIC_KEY="'.$privateKey.'"');
$this->line('PASSPORT_PRIVATE_KEY="'.$privateKey.'"');
$this->line('PASSPORT_PUBLIC_KEY="'.$publicKey.'"');
} elseif ($format === 'yaml') {
$this->line('APP_KEY: "'.$appKey.'"');
$this->line("PASSPORT_PRIVATE_KEY: |\n ".Str::replace("\n", "\n ", $privateKey));
Expand Down

0 comments on commit c888ac7

Please sign in to comment.