We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f76001 commit a896407Copy full SHA for a896407
src/github/backup.rs
@@ -166,10 +166,9 @@ impl GithubClient {
166
// If the clone failed, remove the directory to avoid leaving a broken repo
167
std::fs::remove_dir_all(tmp_directory)?;
168
}
169
- Err(GitError::ExecutionError {
170
- command: format!("git remote update -C {path}"),
171
- status: s.status.to_string(),
172
- })
+ Err(GitError::Other(format!(
+ "Failed to back up repository: {ssh_url}, error: {e}"
+ )))
173
174
175
})
0 commit comments