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

11 lines
167 B
Go
Raw Normal View History

package commands
func getPlatform() *Platform {
return &Platform{
os: "windows",
shell: "cmd",
shellArg: "/c",
2018-09-01 05:28:10 +02:00
escapedQuote: `\"`,
2018-09-01 06:33:01 +02:00
}
}