Skip to content

feat: Add CLI support for workspace build parameters #5768

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 16 commits into from
Jan 23, 2023
Prev Previous commit
Next Next commit
fix: richParameterFile
  • Loading branch information
mtojek committed Jan 19, 2023
commit f6dee95a8c0cff8cc4b8fe1e8bcb97796d03f93e
2 changes: 1 addition & 1 deletion cli/create.go
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ PromptParamLoop:

parameterMapFromFile = map[string]string{}
useParamFile = false
if args.ParameterFile != "" {
if args.RichParameterFile != "" {
useParamFile = true
_, _ = fmt.Fprintln(cmd.OutOrStdout(), cliui.Styles.Paragraph.Render("Attempting to read the variables from the rich parameter file.")+"\r\n")
parameterMapFromFile, err = createParameterMapFromFile(args.RichParameterFile)
Expand Down