1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2024-12-12 11:15:00 +02:00
lazygit/pkg/commands/oscommands/os_windows.go
2021-04-02 13:15:07 +11:00

12 lines
216 B
Go

package oscommands
func getPlatform() *Platform {
return &Platform{
OS: "windows",
CatCmd: []string{"cmd", "/c", "type"},
Shell: "cmd",
ShellArg: "/c",
EscapedQuote: `\"`,
}
}