From d0b44f21d7fcca8286146874bebeabafb3e75f1e Mon Sep 17 00:00:00 2001 From: Lee Brown Date: Wed, 21 Aug 2019 16:41:00 -0800 Subject: [PATCH] fix build error --- build/cicd/internal/config/service.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build/cicd/internal/config/service.go b/build/cicd/internal/config/service.go index 376c756..d225ea3 100644 --- a/build/cicd/internal/config/service.go +++ b/build/cicd/internal/config/service.go @@ -203,7 +203,7 @@ func NewServiceContext(serviceName Service, cfg *devdeploy.Config) (*ServiceCont // Define the ServiceContext for the web-app that will be used for build and deploy. case ServiceWebApp: - ctx := &ServiceContext{ + ctx = &ServiceContext{ ServiceConfig: webAppCfg, } @@ -310,7 +310,7 @@ func NewServiceContext(serviceName Service, cfg *devdeploy.Config) (*ServiceCont // Define the ServiceContext for the web-api that will be used for build and deploy. case ServiceWebApi: - ctx := &ServiceContext{ + ctx = &ServiceContext{ ServiceConfig: webApiCfg, }