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
When passing Args: []string{} to the child process, having only a single string in the array produces an incorrect result (i.e. the command doesn't run). Having more than one string produces the correct result.
Args: []string{"some verb", "some other verb"}
Works
Args: []string{"some verb"}
Does not work
The text was updated successfully, but these errors were encountered:
Thank you for the report, @timfallmk
A value of Context.Args field is passed to os.StartProcess without any modifications exclude a case when the value is nil.
I can't reproduce the issue. Could you provide detailed steps (and code) to reproduce the issue and information about your OS: go env & uname -a.
When passing
Args: []string{}
to the child process, having only a single string in the array produces an incorrect result (i.e. the command doesn't run). Having more than one string produces the correct result.Args: []string{"some verb", "some other verb"}
Works
Args: []string{"some verb"}
Does not work
The text was updated successfully, but these errors were encountered: