1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-03-21 21:47:32 +02:00
lazygit/pkg/commands/oscommands/os_windows.go

12 lines
216 B
Go
Raw Normal View History

package oscommands
func getPlatform() *Platform {
return &Platform{
2021-03-01 23:16:48 +09:00
OS: "windows",
CatCmd: []string{"cmd", "/c", "type"},
2021-03-01 23:16:48 +09:00
Shell: "cmd",
ShellArg: "/c",
EscapedQuote: `\"`,
2018-09-01 14:33:01 +10:00
}
}