Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--internal/git2go/executor.go3
1 files changed, 0 insertions, 3 deletions
diff --git a/internal/git2go/executor.go b/internal/git2go/executor.go
index 35b62b682..681024d28 100644
--- a/internal/git2go/executor.go
+++ b/internal/git2go/executor.go
@@ -59,9 +59,6 @@ func (b *Executor) run(ctx context.Context, repo repository.GitRepo, stdin io.Re
}
if err := cmd.Wait(); err != nil {
- if _, ok := err.(*exec.ExitError); ok {
- return nil, fmt.Errorf("%s", stderr.String())
- }
return nil, err
}