Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/response_agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -1124,7 +1124,8 @@ def run_aider(message: str, repo_path: str) -> str:
# Check if there are any changes
updated_commit = git.Repo(repo_path).head.object.hexsha
if current_commit == updated_commit:
raise RuntimeError("No changes made by Aider")
raise RuntimeError(
f"No changes made by Aider. Command used: {message}")

# Return to original directory
os.chdir(original_dir)
Expand Down