From 38c693b8885a6baa4aceef7aaa8167368fd93773 Mon Sep 17 00:00:00 2001 From: Stuart Nightingale Date: Tue, 3 Nov 2020 14:24:22 +0000 Subject: [PATCH] Added DIRECTORY_SEPARATOR to workingDir --- src/Console/Commands/Compose.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Console/Commands/Compose.php b/src/Console/Commands/Compose.php index 7bbee156..4e6a2e73 100644 --- a/src/Console/Commands/Compose.php +++ b/src/Console/Commands/Compose.php @@ -35,7 +35,7 @@ protected function configure() protected function execute(InputInterface $input, OutputInterface $output) { $workingDir = getcwd(); - $this->workingDir = $workingDir; + $this->workingDir = DIRECTORY_SEPARATOR; $composerFile = $workingDir . DIRECTORY_SEPARATOR. 'composer.json'; if (!file_exists($composerFile)) {