From 004d80b860ac93d43fc3e1a582c4a3a8722f8a17 Mon Sep 17 00:00:00 2001 From: Sami Mazouz Date: Thu, 28 May 2020 18:42:54 +0200 Subject: [PATCH] Fix Paths test failing on Windows (#2187) * Fix directory separator for windows os * Change Paths to use a forward slash instead --- framework/core/src/Foundation/Paths.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/core/src/Foundation/Paths.php b/framework/core/src/Foundation/Paths.php index 9f7186a4e..b527cd50b 100644 --- a/framework/core/src/Foundation/Paths.php +++ b/framework/core/src/Foundation/Paths.php @@ -34,7 +34,7 @@ class Paths }, $paths); // Assume a standard Composer directory structure unless specified - $this->paths['vendor'] = $this->vendor ?? $this->base.DIRECTORY_SEPARATOR.'vendor'; + $this->paths['vendor'] = $this->vendor ?? $this->base.'/vendor'; } public function __get($name): ?string