summaryrefslogtreecommitdiffstats
path: root/pkg/commands
diff options
context:
space:
mode:
authorChristian Muehlhaeuser <muesli@gmail.com>2019-07-19 03:46:07 +0200
committerJesse Duffield <jessedduffield@gmail.com>2019-07-27 10:55:21 +1000
commitcc138fc70eaf135d796e666cc2988698f5d4d4ef (patch)
treec762fda6acd81ad5bbcc67db579b115aa6cf7d32 /pkg/commands
parentd953712377a9928ecbc9c2e351959c9f3a4a1191 (diff)
Simplified boolean comparison
Diffstat (limited to 'pkg/commands')
-rw-r--r--pkg/commands/git.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/commands/git.go b/pkg/commands/git.go
index 3bda46ee3..c767b5917 100644
--- a/pkg/commands/git.go
+++ b/pkg/commands/git.go
@@ -692,7 +692,7 @@ func (c *GitCommand) PrepareInteractiveRebaseCommand(baseSha string, todo string
ex := c.OSCommand.GetLazygitPath()
debug := "FALSE"
- if c.OSCommand.Config.GetDebug() == true {
+ if c.OSCommand.Config.GetDebug() {
debug = "TRUE"
}