Fix: Loosing environment variables at StartProcess

This commit is contained in:
thephoenixofthevoid 2021-06-26 10:50:03 +03:00 committed by Phoenix The Fallen
parent 1cac2f2278
commit 8d70ba2eaa

View file

@ -196,6 +196,8 @@ func runFuse(cmd *Command, args []string) bool {
argv := append(os.Args, "-o", "child") argv := append(os.Args, "-o", "child")
attr := os.ProcAttr{} attr := os.ProcAttr{}
attr.Env = os.Environ()
child, err := os.StartProcess(arg0, argv, &attr) child, err := os.StartProcess(arg0, argv, &attr)
if err != nil { if err != nil {
@ -211,11 +213,6 @@ func runFuse(cmd *Command, args []string) bool {
return true return true
} }
// I don't know why PATH environment variable is lost
if err := os.Setenv("PATH", "/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin"); err != nil {
panic(fmt.Errorf("setenv: %s", err))
}
// just call "weed mount" command // just call "weed mount" command
return runMount(cmdMount, []string{}) return runMount(cmdMount, []string{})
} }