forked from TrueCloudLab/certificates
Simplify conditional
This commit is contained in:
parent
a7d144996f
commit
922d239171
1 changed files with 3 additions and 5 deletions
|
@ -105,12 +105,10 @@ func (a *Authority) GetSSHConfig(ctx context.Context, typ string, data map[strin
|
|||
// Backwards compatibility for version of the cli older than v0.18.0.
|
||||
// Before v0.18.0 we were not passing any value for SSHTemplateVersionKey
|
||||
// from the cli.
|
||||
if o.Name == "step_includes.tpl" {
|
||||
if val, ok := data[templates.SSHTemplateVersionKey]; !ok || val == "" {
|
||||
if o.Name == "step_includes.tpl" && data[templates.SSHTemplateVersionKey] == "" {
|
||||
o.Type = templates.File
|
||||
o.Path = strings.TrimPrefix(o.Path, "${STEPPATH}/")
|
||||
}
|
||||
}
|
||||
|
||||
output = append(output, o)
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue