Skip to content

Commit

Permalink
Fix condition for checking localhost key in ProductionSeeder.php
Browse files Browse the repository at this point in the history
  • Loading branch information
andrasbacsai committed Jan 26, 2024
1 parent a993fef commit e7e3adc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion database/seeders/ProductionSeeder.php
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,8 @@ public function run(): void
]);
}

if (!isCloud() && config('coolify.is_windows_docker_desktop') === false) {
if (!isCloud() && config('coolify.is_windows_docker_desktop') == false) {
echo "Checking localhost key.\n";
// Save SSH Keys for the Coolify Host
$coolify_key_name = "[email protected]";
$coolify_key = Storage::disk('ssh-keys')->get("{$coolify_key_name}");
Expand Down

0 comments on commit e7e3adc

Please sign in to comment.