Made generators work in addition to transformers

Made go fmt to make linter happy
This commit is contained in:
Alexey Odinokov
2020-06-14 03:28:19 +00:00
parent 9bd4f78288
commit b78464c8b1
5 changed files with 54 additions and 42 deletions

View File

@@ -76,7 +76,7 @@ func NewCmdBuild(out io.Writer) *cobra.Command {
"output", "o", "",
"If specified, write the build output to this path.")
cmd.Flags().BoolVar(
&o.fnOptions.EnableExec, "enable-exec", false /*do not change!*/,
&o.fnOptions.EnableExec, "enable-exec", false, /*do not change!*/
"enable support for exec functions -- note: exec functions run arbitrary code -- do not use for untrusted configs!!! (Alpha)")
cmd.Flags().BoolVar(
&o.fnOptions.EnableStar, "enable-star", false,