mirror of
https://github.com/helm/helm.git
synced 2026-05-28 04:35:48 -04:00
fix(helm): Fix the bug in helm dependency update -verify
Helm dependency update --verify should fail when verification fails. Closes #2717
This commit is contained in:
parent
3cf8f2c8b3
commit
d84b707d1e
1 changed files with 1 additions and 1 deletions
|
|
@ -96,7 +96,7 @@ func (d *dependencyUpdateCmd) run() error {
|
|||
Getters: getter.All(settings),
|
||||
}
|
||||
if d.verify {
|
||||
man.Verify = downloader.VerifyIfPossible
|
||||
man.Verify = downloader.VerifyAlways
|
||||
}
|
||||
if settings.Debug {
|
||||
man.Debug = true
|
||||
|
|
|
|||
Loading…
Reference in a new issue