From cc138fc70eaf135d796e666cc2988698f5d4d4ef Mon Sep 17 00:00:00 2001 From: Christian Muehlhaeuser Date: Fri, 19 Jul 2019 03:46:07 +0200 Subject: [PATCH] Simplified boolean comparison --- pkg/commands/git.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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" }