1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-06-27 00:51:18 +02:00
Files
lazygit/pkg/commands/oscommands/os_windows.go
Ryooooooga 1e50764b4d Fix tests
2021-10-17 11:00:20 +11:00

10 lines
135 B
Go

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