dnscrypt-proxy/vendor/github.com/kardianos/service/service_go1.8.go

16 lines
208 B
Go
Raw Normal View History

2018-01-17 11:28:43 +01:00
//+build go1.8
package service
import (
"os"
"path/filepath"
)
func (c *Config) execPath() (string, error) {
if len(c.Executable) != 0 {
return filepath.Abs(c.Executable)
}
return os.Executable()
}