Skip to content

Commit

Permalink
Make sure added paths are lowercase
Browse files Browse the repository at this point in the history
  • Loading branch information
Notexe committed Oct 16, 2023
1 parent 890e8ec commit a06e3e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/add_paths.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def update_json(hash_val, path_val, hash_type):

for entry in data:
if entry["hash"] == hash_val:
entry["path"] = path_val
entry["path"] = path_val.lower()
break
else:
return
Expand Down

0 comments on commit a06e3e4

Please sign in to comment.