command takes a list of args and executes them as a program. Example: docker-compose up -f "./my docker compose.yml" would become: command("docker-compose", "up", "-f", "./my docker compose.yml")
(args ...string)
| 174 | // |
| 175 | // command("docker-compose", "up", "-f", "./my docker compose.yml") |
| 176 | func command(args ...string) *exec.Cmd { |
| 177 | return commandWithContext(ctxb, args...) |
| 178 | } |
| 179 | |
| 180 | // ensureGoPathLinuxBinEnvVarSet sets LINUX_GOBIN environment variable if not already set. |
| 181 | // On Linux, it defaults to $GOPATH/bin. On other systems (macOS, etc.), it defaults |
no test coverage detected