Skip to content
Snippets Groups Projects
Commit abeab267 authored by Kamil Trzcinski's avatar Kamil Trzcinski
Browse files

Fix compilation error

parent 78e1c9bc
No related tags found
No related merge requests found
...@@ -550,7 +550,7 @@ func (s *executor) createFromServiceDescription(description string, linksMap map ...@@ -550,7 +550,7 @@ func (s *executor) createFromServiceDescription(description string, linksMap map
return return
} }
func (s *executor) startServices() (services servicesLinks, error) { func (s *executor) startServices() (services servicesLinks, err error) {
serviceNames, err := s.getServiceNames() serviceNames, err := s.getServiceNames()
if err != nil { if err != nil {
return nil, err return nil, err
......
...@@ -12,15 +12,15 @@ import ( ...@@ -12,15 +12,15 @@ import (
type commandExecutor struct { type commandExecutor struct {
executor executor
containerOptions *docker.CreateContainerOptions containerOptions *docker.CreateContainerOptions
predefinedContainer *docker.Container predefinedContainer *docker.Container
predefinedImage *docker.Image predefinedImage *docker.Image
buildContainer *docker.Container buildContainer *docker.Container
buildImage string buildImage string
preparedServices servicesLinks preparedServices servicesLinks
} }
func (s *commandExecutor) Prepare(globalConfig *common.Config, config *common.RunnerConfig, build *common.Build) error { func (s *commandExecutor) Prepare(globalConfig *common.Config, config *common.RunnerConfig, build *common.Build) error {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment