1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-03-23 21:51:07 +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 23:16:48 +09:00
OS: "windows",
Shell: "cmd",
ShellArg: "/c",
EscapedQuote: `\"`,
2018-09-01 14:33:01 +10:00
}
}