summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorIbrahim Serdar Acikgoz <serdaracikgoz86@gmail.com>2018-11-24 15:22:48 +0300
committerIbrahim Serdar Acikgoz <serdaracikgoz86@gmail.com>2018-11-24 15:22:48 +0300
commitdc6cd735715d488a486dd5b750fcc9efb2485766 (patch)
tree3c3062270b32d9a6340bb95229a349edf9547e2d /main.go
parentinitial implementaion of remote scroll (diff)
downloadgitbatch-dc6cd735715d488a486dd5b750fcc9efb2485766.tar.gz
commit handling is intiated
Diffstat (limited to 'main.go')
-rw-r--r--main.go5
1 files changed, 4 insertions, 1 deletions
diff --git a/main.go b/main.go
index 4a716d3..bc2b79f 100644
--- a/main.go
+++ b/main.go
@@ -25,7 +25,10 @@ func main() {
log.Fatal(err)
}
- app.Gui.Run()
+ err = app.Gui.Run()
+ if err != nil {
+ log.Fatal(err)
+ }
defer app.Close()
}