From bab084a75f76bc255395cc331c9a6ef54b96c977 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 --- src/Foundation/Paths.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Foundation/Paths.php b/src/Foundation/Paths.php index 9f7186a4e..b527cd50b 100644 --- a/src/Foundation/Paths.php +++ b/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