ModifyCommand modifies the command and arguments before execution based on the environment. This is useful for executing a command inside a container. In the default case, the command and arguments are returned unchanged.
(name string, args ...string)
| 39 | // the environment. This is useful for executing a command inside a container. |
| 40 | // In the default case, the command and arguments are returned unchanged. |
| 41 | ModifyCommand(name string, args ...string) (string, []string) |
| 42 | } |
| 43 | |
| 44 | // SystemEnvInfo encapsulates the information about the environment |
no outgoing calls