1
0
mirror of https://github.com/raseels-repos/golang-saas-starter-kit.git synced 2025-08-08 22:36:41 +02:00

fix build error

This commit is contained in:
Lee Brown
2019-08-21 16:41:00 -08:00
parent 6688b14b20
commit d0b44f21d7

View File

@ -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. // Define the ServiceContext for the web-app that will be used for build and deploy.
case ServiceWebApp: case ServiceWebApp:
ctx := &ServiceContext{ ctx = &ServiceContext{
ServiceConfig: webAppCfg, 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. // Define the ServiceContext for the web-api that will be used for build and deploy.
case ServiceWebApi: case ServiceWebApi:
ctx := &ServiceContext{ ctx = &ServiceContext{
ServiceConfig: webApiCfg, ServiceConfig: webApiCfg,
} }