mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-01-08 04:04:22 +02:00
12 lines
200 B
Go
12 lines
200 B
Go
package oscommands
|
|
|
|
func getPlatform() *Platform {
|
|
return &Platform{
|
|
OS: "windows",
|
|
CatCmd: "cmd /c type",
|
|
Shell: "cmd",
|
|
ShellArg: "/c",
|
|
EscapedQuote: `\"`,
|
|
}
|
|
}
|