1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-07-05 00:59:19 +02:00
Files
lazygit/pkg/commands/os_windows.go
2018-09-01 12:53:51 +10:00

12 lines
207 B
Go

package commands
func getPlatform() *Platform {
return &Platform{
os: "windows",
shell: "cmd",
shellArg: "/c",
escapedQuote: "\\\"",
openCommand: "start {{filename}}",
}
}