Skip to content

Commit a97b4cb

Browse files
committed
Fixed a bug with intializeMagentoRootDir
1 parent 3f4eaa1 commit a97b4cb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/MagentoHackathon/Composer/Magento/Installer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ protected function initializeMagentoRootDir() {
223223
$pathParts = array_merge($baseDir, $pathParts);
224224
$directoryPath = '';
225225
foreach ($pathParts as $pathPart) {
226-
$directoryPath .= DIRECTORY_SEPARATOR . $pathPart;
226+
$directoryPath .= $pathPart . DIRECTORY_SEPARATOR;
227227
$this->filesystem->ensureDirectoryExists($directoryPath);
228228
}
229229
}

0 commit comments

Comments
 (0)