(args ...string)
| 81 | } |
| 82 | |
| 83 | func execDockerCompose(args ...string) error { |
| 84 | _, err := sh.Exec(nil, os.Stdout, os.Stderr, "docker", dockerComposeFlags(args...)...) |
| 85 | return err |
| 86 | } |
| 87 | |
| 88 | // SQLStart starts the SQL database of the development environment. |
| 89 | func (Dev) SQLStart() error { |
no test coverage detected