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 oscommands
|
|
|
|
func getPlatform() *Platform {
|
|
return &Platform{
|
|
OS: "windows",
|
|
Shell: "cmd",
|
|
ShellArg: "/c",
|
|
EscapedQuote: `\"`,
|
|
}
|
|
}
|