diff options
Diffstat (limited to 'repository/git.go')
-rw-r--r-- | repository/git.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/repository/git.go b/repository/git.go index 5b5cbc3d..c5dc5618 100644 --- a/repository/git.go +++ b/repository/git.go @@ -169,7 +169,7 @@ func (repo *GitRepo) PushRefs(remote string, refSpec string) (string, error) { stdout, stderr, err := repo.runGitCommandRaw(nil, "push", remote, refSpec) if err != nil { - return stdout + stderr, fmt.Errorf("failed to push to the remote '%s': %v", remote, err) + return stdout + stderr, fmt.Errorf("failed to push to the remote '%s': %v", remote, stderr) } return stdout + stderr, nil } |