Skip to content
Snippets Groups Projects
Commit 809c3e4a authored by Eugene Baranov's avatar Eugene Baranov
Browse files

convert: ignore case changes in vieworder for Perforce

Perforce sometimes mixes the case resulting in files being ignored.
parent 220d9ae6
No related branches found
No related tags found
No related merge requests found
......@@ -137,7 +137,7 @@
oldname = d["depotFile%d" % i]
filename = None
for v in vieworder:
if oldname.startswith(v):
if oldname.lower().startswith(v.lower()):
filename = views[v] + oldname[len(v):]
break
if filename:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment