mirror of
https://github.com/jesseduffield/lazygit.git
synced 2024-12-12 11:15:00 +02:00
964e3872c1
Signed-off-by: Randshot <randshot@norealm.xyz>
13 lines
262 B
Go
13 lines
262 B
Go
package commands
|
|
|
|
func getPlatform() *Platform {
|
|
return &Platform{
|
|
os: "windows",
|
|
catCmd: "type",
|
|
shell: "cmd",
|
|
shellArg: "/c",
|
|
escapedQuote: `\"`,
|
|
fallbackEscapedQuote: "\\'",
|
|
}
|
|
}
|