1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-05-31 23:19:40 +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 { func getPlatform() *Platform {
return &Platform{ return &Platform{
os: "windows", OS: "windows",
catCmd: "type", CatCmd: "type",
shell: "cmd", Shell: "cmd",
shellArg: "/c", ShellArg: "/c",
escapedQuote: `\"`, EscapedQuote: `\"`,
FallbackEscapedQuote: "\\'", FallbackEscapedQuote: "\\'",
} }
} }