Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
Fraccaman committed Jul 25, 2024
1 parent 18e36ca commit b178ed6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scripts/validate-pr.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ def check_deleted_and_modified_files(alias):
files = list(map(lambda file_path: file_path.decode(), res.stdout.splitlines()))
for file in files:
file_alias = file.split('/')[1].split('.')[0]
if alias != file_alias:
if alias.lower() != file_alias.lower():
print(alias, file_alias)
exit(1)

def get_all_created_files():
Expand Down

0 comments on commit b178ed6

Please sign in to comment.