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
I think the cleanest thing is to remove this. Typically -- is used to separate positional arguments from flags e.g. <cmd> --foo --bar -- pos1 pos2 but that is not how it works for the client.
The text was updated successfully, but these errors were encountered:
-- is typically used to separate the command arguments from sub command arguments. For example kubectl exec pod -- command to exec inside the pod.
This is not really needed in the client, since our command is trivial, but it is nice to support this since users may already using this format. You are correct that the issue is not considering the special -- option - when we consume it we need to decrease argc, and fail if no argument left for execve().
this is caused by the special handling of
--
:socket_vmnet/client/main.c
Line 36 in f486d47
I think the cleanest thing is to remove this. Typically
--
is used to separate positional arguments from flags e.g.<cmd> --foo --bar -- pos1 pos2
but that is not how it works for the client.The text was updated successfully, but these errors were encountered: