Skip to content

Commit

Permalink
check
Browse files Browse the repository at this point in the history
  • Loading branch information
richagadgil committed Dec 19, 2024
1 parent d687682 commit f7cccb7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/check_stamped.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ def main(branch) -> None:
if debug: print(f"Target branch {branch}")

# proc 2 is getting the list of file differences between FETCH_HEAD and the branch to be merged. (filters out deleted files from FETCH_HEAD)
proc = subprocess.run("git diff --name-only --diff-filter=d HEAD FETCH_HEAD",
proc = subprocess.run("git diff --name-only --diff-filter=d FETCH_HEAD...HEAD",
shell=True,
stdout=subprocess.PIPE)
fileList = proc.stdout.decode().split('\n')
Expand Down

0 comments on commit f7cccb7

Please sign in to comment.