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

fix windows build

This commit is contained in:
Jesse Duffield 2020-09-29 20:38:31 +10:00
parent ce6f8ed1bc
commit ca105692cf

View File

@ -2,11 +2,11 @@ package oscommands
func getPlatform() *Platform {
return &Platform{
os: "windows",
catCmd: "type",
shell: "cmd",
shellArg: "/c",
escapedQuote: `\"`,
OS: "windows",
CatCmd: "type",
Shell: "cmd",
ShellArg: "/c",
EscapedQuote: `\"`,
FallbackEscapedQuote: "\\'",
}
}