mirror of
https://github.com/jesseduffield/lazygit.git
synced 2024-12-12 11:15:00 +02:00
13 lines
271 B
Go
13 lines
271 B
Go
package oscommands
|
|
|
|
func getPlatform() *Platform {
|
|
return &Platform{
|
|
OS: "windows",
|
|
CatCmd: "cmd /c type",
|
|
Shell: "cmd",
|
|
ShellArg: "/c",
|
|
EscapedQuote: `\"`,
|
|
FallbackEscapedQuote: "\\'",
|
|
}
|
|
}
|