From a13ae8ae6d633d9fc4ae1fd7ed3170f9d185d513 Mon Sep 17 00:00:00 2001 From: Alexander Walther Date: Sun, 27 Oct 2024 03:49:56 +0100 Subject: [PATCH] =?UTF-8?q?Directory=20Seperator=20=C3=A4ndern?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit close #93 --- deployer/config.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deployer/config.php b/deployer/config.php index 26070f2..9e42260 100644 --- a/deployer/config.php +++ b/deployer/config.php @@ -9,7 +9,7 @@ use function in_array; use function strlen; -$rootPath = dirname(DEPLOYER_DEPLOY_FILE); /** @phpstan-ignore-line */ +$rootPath = str_replace('\\', '/', dirname(DEPLOYER_DEPLOY_FILE)); /** @phpstan-ignore-line */ $command = (new ArgvInput())->getFirstArgument(); $localBuildDir = 'setup' !== $command && !getenv('CI');