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

16 lines
208 B
Go

//+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()
}