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 077c630 commit dd51366
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/validate-pr.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def check_deleted_and_modified_files(alias):
exit(1)

def get_all_created_files():
res = subprocess.run(["git", "diff", "--name-only", "--diff-filter=A", "origin/main"], stdout=subprocess.PIPE, stderr=subprocess.PIPE)
res = subprocess.run(["git", "diff", "--name-only", "--diff-filter=AM", "origin/main"], stdout=subprocess.PIPE, stderr=subprocess.PIPE)
if res.returncode > 0:
exit(1)

Expand Down

0 comments on commit dd51366

Please sign in to comment.