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

13 lines
264 B
Go
Raw Normal View History

package oscommands
func getPlatform() *Platform {
return &Platform{
2020-09-29 20:38:31 +10:00
OS: "windows",
CatCmd: "type",
Shell: "cmd",
ShellArg: "/c",
EscapedQuote: `\"`,
FallbackEscapedQuote: "\\'",
2018-09-01 14:33:01 +10:00
}
}