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

fix docker-compose up - webapp required sender email to be set

This commit is contained in:
Lee Brown
2019-08-07 17:49:21 -08:00
parent 13ad786d02
commit 195754432c
7 changed files with 50 additions and 22 deletions

View File

@@ -3329,7 +3329,7 @@ func ServiceDeploy(log *log.Logger, req *serviceDeployRequest) error {
staticDir := filepath.Join(req.ServiceDir, "static")
if _, err := os.Stat(staticDir); err != nil {
if _, err := os.Stat(staticDir); err != nil {
return errors.Wrapf(err, "Static directory '%s' does not exist.", staticDir)
}