Skip to content

Commit

Permalink
Normalize paths for windows.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaspertey committed Oct 14, 2024
1 parent af25cf9 commit 0a4585f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Support/DomainMigration.php
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public static function discoverPaths(): array
$finder = static::finder($paths);

return Lody::filesFromFinder($finder)
->map(fn ($file) => $file->getPath())
->map(fn ($file) => Path::normalize($file->getPath()))
->unique()
->values()
->toArray();
Expand Down

0 comments on commit 0a4585f

Please sign in to comment.