Skip to content

Commit

Permalink
Update scripts/release_scripts/increment_version.py
Browse files Browse the repository at this point in the history
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
  • Loading branch information
SafetyQuincyF and coderabbitai[bot] authored Oct 23, 2024
1 parent 7a622c4 commit f945a0d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/release_scripts/increment_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def get_git_commits_since_last_version(last_version: str) -> str:
text=True,
)
if result.returncode != 0:
raise Exception(f"Error running git log: {result.stderr}")
raise RuntimeError(f"Error running git log: {result.stderr}")
return result.stdout.strip()


Expand Down

0 comments on commit f945a0d

Please sign in to comment.