Skip to content

Commit

Permalink
fix: normalize path separator
Browse files Browse the repository at this point in the history
  • Loading branch information
alekitto committed Dec 1, 2024
1 parent 0b99357 commit 95acdc1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/PathNormalizer.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,6 @@ public static function resolvePath(string $path): string
}
}

return implode(DIRECTORY_SEPARATOR, $newPath);
return implode('/', $newPath);
}
}

0 comments on commit 95acdc1

Please sign in to comment.