1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-02-09 13:47:11 +02:00

Simplified boolean comparison

This commit is contained in:
Christian Muehlhaeuser 2019-07-19 03:46:07 +02:00 committed by Jesse Duffield
parent d953712377
commit cc138fc70e

View File

@ -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"
}