1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2024-12-12 11:15:00 +02:00
lazygit/pkg/commands/oscommands/os_windows.go
Jesse Duffield 95b2e9540a update tests
2022-01-04 09:07:15 +11:00

10 lines
135 B
Go

package oscommands
func GetPlatform() *Platform {
return &Platform{
OS: "windows",
Shell: "cmd",
ShellArg: "/c",
}
}