mirror of
https://github.com/davidallendj/configurator.git
synced 2025-12-19 19:17:01 -07:00
fix: set clientopts correctly in generate.go
This commit is contained in:
parent
9951b9a1f3
commit
cccf6321cc
1 changed files with 2 additions and 3 deletions
|
|
@ -81,12 +81,11 @@ var generateCmd = &cobra.Command{
|
|||
}
|
||||
|
||||
// set the client options
|
||||
opts := []client.Option{}
|
||||
if conf.AccessToken != "" {
|
||||
params.ClientOpts = append(opts, client.WithAccessToken(conf.AccessToken))
|
||||
params.ClientOpts = append(params.ClientOpts, client.WithAccessToken(conf.AccessToken))
|
||||
}
|
||||
if conf.CertPath != "" {
|
||||
params.ClientOpts = append(opts, client.WithCertPoolFile(conf.CertPath))
|
||||
params.ClientOpts = append(params.ClientOpts, client.WithCertPoolFile(conf.CertPath))
|
||||
}
|
||||
|
||||
// run generator.Generate() with just plugin path and templates provided
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue