Skip to content

Commit e7ec4d2

Browse files
memo33jflann
authored andcommitted
fix driveside detection of files for conflicting overrides check
1 parent 23a61cd commit e7ec4d2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/scala/module/Rul2Model.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ object Rul2Model {
3434
}
3535

3636
def drivesideOfFile(path: Path): Driveside = {
37-
val name = path.getFileName().toString()
37+
val name = path.getFileName().toString().toLowerCase(java.util.Locale.ENGLISH)
3838
if (name.contains("rhd.")) Rhd
3939
else if (name.contains("lhd.")) Lhd
4040
else RhdAndLhd

0 commit comments

Comments
 (0)