Skip to content
This repository was archived by the owner on Jun 21, 2023. It is now read-only.

Commit 986dbee

Browse files
committed
Let's not lose the stack trace
1 parent e021c32 commit 986dbee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/GitHub.App/Services/RepositoryCloneService.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public IObservable<Unit> CloneRepository(string cloneUrl, string repositoryName,
5353
catch (Exception ex)
5454
{
5555
log.Error("Could not clone {0} to {1}. {2}", cloneUrl, path, ex);
56-
throw ex;
56+
throw;
5757
}
5858

5959
return Unit.Default;

0 commit comments

Comments
 (0)