Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
cgundy committed Dec 9, 2024
1 parent d98163a commit 9839d4b
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,7 @@ def get_changed_files(merge_base_sha: str, branch_head_sha: str, repo_path: Opti
commit_range = f"{merge_base_sha}..{branch_head_sha}"
# debug
current_branch = subprocess.run(["git", "branch"], capture_output=True, cwd=repo_path)
print(f"current branch: {current_branch.stdout}"
)
print(f"current branch: {current_branch.stdout}")
result = subprocess.run(
["git", "diff", "--name-only", commit_range],
capture_output=True,
Expand Down

0 comments on commit 9839d4b

Please sign in to comment.