You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// If Args is non-nil, it gives the command-line args for the
// daemon-process. If it is nil, the result of os.Args will be used
// (without program name).
This is not strictly true. prepareEnv, in the case no Args passed, sets the Args equal to os.Arg which includes the process name. Changing this to the following would fix it.
From the comment:
This is not strictly true.
prepareEnv
, in the case noArgs
passed, sets theArgs
equal toos.Arg
which includes the process name. Changing this to the following would fix it.I suspect this is related to #33
The text was updated successfully, but these errors were encountered: