forked from coollabsio/coolify
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix condition for checking localhost key in ProductionSeeder.php
- Loading branch information
1 parent
a993fef
commit e7e3adc
Showing
1 changed file
with
2 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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}"); | ||
|