runDevboxServicesScript invokes RunScript with the envOptions set to the appropriate defaults for the `devbox services` scenario.
(ctx context.Context, cmdArgs []string)
| 270 | // runDevboxServicesScript invokes RunScript with the envOptions set to the appropriate |
| 271 | // defaults for the `devbox services` scenario. |
| 272 | func (d *Devbox) runDevboxServicesScript(ctx context.Context, cmdArgs []string) error { |
| 273 | cmdArgs = append([]string{"services"}, cmdArgs...) |
| 274 | return d.RunScript(ctx, devopt.EnvOptions{}, "devbox", cmdArgs) |
| 275 | } |
| 276 | |
| 277 | func (d *Devbox) ShowProcessComposePort(ctx context.Context, writer io.Writer) error { |
| 278 | port, err := services.GetProcessManagerPort(d.projectDir) |
no test coverage detected