Skip to content

Commit

Permalink
Update internal/context/init.go
Browse files Browse the repository at this point in the history
Preserve backward compatibility

Co-authored-by: David Cheung <davidcheung@live.ca>
  • Loading branch information
bmonkman and davidcheung committed Jun 5, 2020
1 parent f363ba0 commit 2c6897f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion internal/context/init.go
Expand Up @@ -51,7 +51,9 @@ func Init(projectName string, outDir string) *projectconfig.ZeroProjectConfig {
}

projectParameters := promptAllModules(moduleConfig)
for _ = range projectParameters {

for k, v = range projectParameters {
projectConfig.Context[k] = v
// TODO: Add parameters to module structs inside project
}

Expand Down

0 comments on commit 2c6897f

Please sign in to comment.