Skip to content

Commit

Permalink
Merge pull request #48 from RamyHakam/fix-wrong-dir-check
Browse files Browse the repository at this point in the history
fix-wrong-dir-check
  • Loading branch information
RamyHakam authored Jul 27, 2024
2 parents 6460290 + b5c7b9e commit b9256b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/DependencyInjection/HakamMultiTenancyExtension.php
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ private function checkDir(string $projectDir, string $dir): void
{
$fileSystem = new Filesystem();
$dir = str_replace('%kernel.project_dir%', '', $dir);
$dir = $projectDir . $dir;
$dir = sprintf("%s/%s",$projectDir , $dir);
if (!$fileSystem->exists($dir)) {
$fileSystem->mkdir($dir);
}
Expand Down

0 comments on commit b9256b8

Please sign in to comment.