mirror of
https://github.com/jesseduffield/lazygit.git
synced 2024-11-26 09:00:57 +02:00
11 lines
167 B
Go
11 lines
167 B
Go
package commands
|
|
|
|
func getPlatform() *Platform {
|
|
return &Platform{
|
|
os: "windows",
|
|
shell: "cmd",
|
|
shellArg: "/c",
|
|
escapedQuote: `\"`,
|
|
}
|
|
}
|