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

@ -3,7 +3,7 @@ package oscommands
func getPlatform() *Platform {
return &Platform{
OS: "windows",
CatCmd: "cmd /c type",
CatCmd: []string{"cmd", "/c", "type"},
Shell: "cmd",
ShellArg: "/c",
EscapedQuote: `\"`,