From 0b9bffebf20422e0f1fa7275f22f4339466daf0f Mon Sep 17 00:00:00 2001 From: Hang Park Date: Sat, 12 Oct 2019 21:37:32 +0900 Subject: [PATCH] fix(pkg/downloader): Remove comparing hashed digests on build cmd Signed-off-by: Hang Park --- pkg/downloader/manager.go | 5 ----- 1 file changed, 5 deletions(-) diff --git a/pkg/downloader/manager.go b/pkg/downloader/manager.go index f1dea342f..812997ea7 100644 --- a/pkg/downloader/manager.go +++ b/pkg/downloader/manager.go @@ -78,11 +78,6 @@ func (m *Manager) Build() error { return m.Update() } - req := c.Metadata.Dependencies - if sum, err := resolver.HashReq(req); err != nil || sum != lock.Digest { - return errors.New("Chart.lock is out of sync with Chart.yaml") - } - // Check that all of the repos we're dependent on actually exist. if err := m.hasAllRepos(lock.Dependencies); err != nil { return err