mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-03-23 21:51:07 +02:00
13 lines
264 B
Go
13 lines
264 B
Go
package oscommands
|
|
|
|
func getPlatform() *Platform {
|
|
return &Platform{
|
|
os: "windows",
|
|
catCmd: "type",
|
|
shell: "cmd",
|
|
shellArg: "/c",
|
|
escapedQuote: `\"`,
|
|
FallbackEscapedQuote: "\\'",
|
|
}
|
|
}
|