summaryrefslogtreecommitdiffstats
path: root/pkg
diff options
context:
space:
mode:
authorGlenn Vriesman <glenn.vriesman@gmail.com>2018-12-02 17:47:42 +0100
committerJesse Duffield <jessedduffield@gmail.com>2018-12-11 09:39:54 +1100
commitcce6f405a5643ed46a6bc0b9fd7cf132c915c9f3 (patch)
tree1d09d1ad257ab08291163dcfcf0364c151e7026e /pkg
parente39d2ed44bc8cc187abe3cd59349c40ca126b7a6 (diff)
Making ci happier
Diffstat (limited to 'pkg')
-rw-r--r--pkg/gui/branches_panel.go1
-rw-r--r--pkg/gui/merge_panel.go8
2 files changed, 7 insertions, 2 deletions
diff --git a/pkg/gui/branches_panel.go b/pkg/gui/branches_panel.go
index 7252665f9..f4a5e28f5 100644
--- a/pkg/gui/branches_panel.go
+++ b/pkg/gui/branches_panel.go
@@ -115,6 +115,7 @@ func (gui *Gui) handleRebase(g *gocui.Gui, v *gocui.View) error {
}, func(g *gocui.Gui, v *gocui.View) error {
return gui.GitCommand.AbortRebaseBranch()
}); err != nil {
+ gui.Log.Errorln(err)
}
}
diff --git a/pkg/gui/merge_panel.go b/pkg/gui/merge_panel.go
index 1a4a25816..7c2922c9b 100644
--- a/pkg/gui/merge_panel.go
+++ b/pkg/gui/merge_panel.go
@@ -257,8 +257,12 @@ func (gui *Gui) handleCompleteMerge(g *gocui.Gui) error {
gui.stageSelectedFile(g)
gui.refreshFiles(g)
if rebase, err := gui.GitCommand.IsInRebaseState(); rebase && err == nil {
- gui.GitCommand.ContinueRebaseBranch()
- gui.refreshSidePanels(g)
+ if err := gui.GitCommand.ContinueRebaseBranch(); err != nil {
+ gui.Log.Errorln(err)
+ }
+ if err := gui.refreshSidePanels(g); err != nil {
+ gui.Log.Errorln(err)
+ }
}
return gui.switchFocus(g, nil, filesView)
}