Skip to content

Commit

Permalink
fix-wrong-dir-check
Browse files Browse the repository at this point in the history
  • Loading branch information
RamyHakam committed Jul 27, 2024
1 parent 6460290 commit b5c7b9e
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 b5c7b9e

Please sign in to comment.