1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-01-20 05:19:24 +02:00
lazygit/pkg/commands/oscommands/os_windows.go

10 lines
135 B
Go
Raw Normal View History

package oscommands
2022-01-03 15:15:26 +11:00
func GetPlatform() *Platform {
return &Platform{
2021-10-09 14:53:43 +09:00
OS: "windows",
Shell: "cmd",
ShellArg: "/c",
2018-09-01 14:33:01 +10:00
}
}