Skip to content

Commit

Permalink
remove error checking
Browse files Browse the repository at this point in the history
  • Loading branch information
cgundy committed Dec 9, 2024
1 parent d7d5d93 commit fb01258
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,6 @@ def get_changed_files(merge_base_sha: str, branch_head_sha: str) -> list[str]:
result = subprocess.run(
["git", "diff", "--name-only", commit_range], capture_output=True, text=True,
)
if result.returncode != 0:
raise RuntimeError(f"git diff failed: {result.stderr}")
changed_files = result.stdout.strip().split("\n")
return changed_files

Expand Down

0 comments on commit fb01258

Please sign in to comment.