1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-05-19 22:33:16 +02:00

no need for debug flag because it writes to a different log anyway

This commit is contained in:
Jesse Duffield 2021-04-05 11:15:40 +10:00
parent 2295407a45
commit dfc689411b

View File

@ -355,7 +355,7 @@ func runLazygit(testPath string, rootDir string, record bool, speed int) error {
return err
}
cmdStr := fmt.Sprintf("%s -debug --use-config-dir=%s --path=%s", tempLazygitPath(), configDir, actualDir)
cmdStr := fmt.Sprintf("%s --use-config-dir=%s --path=%s", tempLazygitPath(), configDir, actualDir)
cmd := osCommand.ExecutableFromString(cmdStr)
cmd.Env = append(cmd.Env, fmt.Sprintf("REPLAY_SPEED=%d", speed))