fix: guard against null or empty docker compose in saveComposeConfigs method

This commit is contained in:
Andras Bacsai 2025-11-07 14:14:43 +01:00
parent 468d5fe7d7
commit e86575d6f7

View file

@ -1287,6 +1287,11 @@ public function workdir()
public function saveComposeConfigs()
{
// Guard against null or empty docker_compose
if (! $this->docker_compose) {
return;
}
$workdir = $this->workdir();
instant_remote_process([