mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-01-06 03:53:59 +02:00
11 lines
169 B
Go
11 lines
169 B
Go
package commands
|
|
|
|
func getPlatform() *Platform {
|
|
return &Platform{
|
|
os: "windows",
|
|
shell: "cmd",
|
|
shellArg: "/c",
|
|
escapedQuote: "\\\"",
|
|
}
|
|
}
|