1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2024-12-14 11:23:09 +02:00
lazygit/pkg/commands/oscommands/os_windows.go

10 lines
135 B
Go
Raw Normal View History

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