Fix `helmfile --selector x=y template` with `needs` (#1564)

I had mistakenly inverted the necessary flag to turn off the legacy processing on selectors that should be used only for helmfile commands that does not support DAGs/needs.

Fixes #1552
This commit is contained in:
Yusuke Kuoka 2020-11-04 09:29:23 +09:00 committed by GitHub
parent 995b201e47
commit 87e86dcfd2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -233,7 +233,7 @@ func (a *App) Template(c TemplateConfigProvider) error {
}
return
}, SetFilter(true))
})
}
func (a *App) WriteValues(c WriteValuesConfigProvider) error {