Skip to content

Commit 0ff24af

Browse files
committed
Fix test and extra field in yaml file
1 parent 3b75283 commit 0ff24af

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

internal/api/create_project.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ func createProject(projectConfig util.ProjectConfiguration) string {
1818
t := templator.NewTemplator(templates)
1919
outDir := "./"
2020
rootDir := path.Join(outDir, projectConfig.ProjectName)
21-
log.Printf("Creating project %s.", projectConfig)
21+
log.Printf("Creating project %s.", projectConfig.ProjectName)
2222
err := os.MkdirAll(rootDir, os.ModePerm)
2323

2424
if os.IsExist(err) {

templates/commit0/commit0.tmpl

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,6 @@ frontend:
2424
system: github
2525
app:
2626
name: {{.ProjectName }}
27-
app:
28-
name: {{.FrontendHostname }}
2927

3028
services:
3129
{{range .Services}}

0 commit comments

Comments
 (0)