From fa42ef960c3d9526b063788b716e4aaddb024024 Mon Sep 17 00:00:00 2001 From: sebastian Date: Sat, 14 Dec 2024 14:56:25 +0100 Subject: [PATCH] Fix path to deployment files --- Classes/Config/Deployment.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Classes/Config/Deployment.php b/Classes/Config/Deployment.php index 6452c79..3e8c2dc 100644 --- a/Classes/Config/Deployment.php +++ b/Classes/Config/Deployment.php @@ -69,7 +69,7 @@ class Deployment extends AbstractConfiguration protected function loadBasicDeployerFiles(): void { - $commonFile = realpath(__DIR__ . '/../../../../Build/vendor/deployer/deployer/recipe/common.php'); + $commonFile = realpath(__DIR__ . '/../../../../deployer/deployer/recipe/common.php'); if (file_exists($commonFile)) { require $commonFile; } @@ -117,7 +117,7 @@ class Deployment extends AbstractConfiguration protected function loadHostConfiguration(): void { // read configuration - inventory(__DIR__ . '/../../../../Build/hosts.yaml'); + inventory(__DIR__ . '/../../../../../hosts.yaml'); } protected function initializeMainTask(): void