summaryrefslogtreecommitdiff
path: root/windowPatchset.go
diff options
context:
space:
mode:
Diffstat (limited to 'windowPatchset.go')
-rw-r--r--windowPatchset.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/windowPatchset.go b/windowPatchset.go
index c24ec57..2ac5138 100644
--- a/windowPatchset.go
+++ b/windowPatchset.go
@@ -208,7 +208,7 @@ func (r *patchWindow) addPatchset(grid *gui.Node, pset *forgepb.Patchset) {
func applyPatch(repo *gitpb.Repo, filename string) error {
cmd := []string{"git", "am", filename}
- _, err := repo.RunVerbose(cmd)
+ err := repo.RunVerbose(cmd)
return err
}