1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-07-28 16:02:01 +03:00

fix merge conflict cat issue on windows

This commit is contained in:
Jesse Duffield
2021-04-02 12:55:50 +11:00
parent 8b7f7cbc30
commit 8901d11674
4 changed files with 16 additions and 4 deletions

View File

@ -9,7 +9,7 @@ import (
func getPlatform() *Platform {
return &Platform{
OS: runtime.GOOS,
CatCmd: "cat",
CatCmd: []string{"cat"},
Shell: "bash",
ShellArg: "-c",
EscapedQuote: `"`,