mirror of
https://github.com/rclone/rclone.git
synced 2024-11-23 13:32:58 +08:00
12 lines
143 B
Go
12 lines
143 B
Go
// +build !go1.8
|
|
|
|
package daemon
|
|
|
|
import (
|
|
"github.com/kardianos/osext"
|
|
)
|
|
|
|
func osExecutable() (string, error) {
|
|
return osext.Executable()
|
|
}
|