locate the weed binary

This commit is contained in:
Chris Lu 2021-07-02 13:33:15 -07:00
parent 53ecae7c7b
commit d8bda0b229

View file

@ -195,7 +195,11 @@ func runFuse(cmd *Command, args []string) bool {
// the master start the child, release it then finish himself
if masterProcess {
arg0 := os.Args[0]
arg0, err := os.Executable()
if err != nil {
panic(err)
}
argv := append(os.Args, "-o", "child")
attr := os.ProcAttr{}