mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-01-22 05:29:44 +02:00
17 lines
214 B
Go
17 lines
214 B
Go
|
// +build !windows
|
||
|
|
||
|
package commands
|
||
|
|
||
|
import (
|
||
|
"runtime"
|
||
|
)
|
||
|
|
||
|
func getPlatform() *Platform {
|
||
|
return &Platform{
|
||
|
os: runtime.GOOS,
|
||
|
shell: "bash",
|
||
|
shellArg: "-c",
|
||
|
escapedQuote: "\"",
|
||
|
}
|
||
|
}
|