1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-01-08 04:04:22 +02:00
lazygit/pkg/commands/oscommands/os_windows.go

11 lines
169 B
Go
Raw Normal View History

package oscommands
func getPlatform() *Platform {
return &Platform{
2021-03-01 16:16:48 +02:00
OS: "windows",
Shell: "cmd",
ShellArg: "/c",
EscapedQuote: `\"`,
2018-09-01 06:33:01 +02:00
}
}