1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-01-26 05:37:18 +02:00

10 lines
115 B
Go
Raw Normal View History

2018-08-25 17:36:16 +10:00
//+build go1.8,!openbsd
package osext
import "os"
func executable() (string, error) {
return os.Executable()
}