Merge pull request #2028 from qwangrepos/issue-2020

local path repo verbose - issue #2020
pull/2051/head
Michelle Noorali 9 years ago committed by GitHub
commit 59bb5aa1b8

@ -98,5 +98,8 @@ func (d *dependencyUpdateCmd) run() error {
if d.verify { if d.verify {
man.Verify = downloader.VerifyIfPossible man.Verify = downloader.VerifyIfPossible
} }
if flagDebug {
man.Debug = true
}
return man.Update() return man.Update()
} }

@ -51,6 +51,8 @@ type Manager struct {
HelmHome helmpath.Home HelmHome helmpath.Home
// Verification indicates whether the chart should be verified. // Verification indicates whether the chart should be verified.
Verify VerificationStrategy Verify VerificationStrategy
// Debug is the global "--debug" flag
Debug bool
// Keyring is the key ring file. // Keyring is the key ring file.
Keyring string Keyring string
// SkipUpdate indicates that the repository should not be updated first. // SkipUpdate indicates that the repository should not be updated first.
@ -213,7 +215,9 @@ func (m *Manager) downloadAll(deps []*chartutil.Dependency) error {
} }
if strings.HasPrefix(dep.Repository, "file://") { if strings.HasPrefix(dep.Repository, "file://") {
if m.Debug {
fmt.Fprintf(m.Out, "Archiving %s from repo %s\n", dep.Name, dep.Repository) fmt.Fprintf(m.Out, "Archiving %s from repo %s\n", dep.Name, dep.Repository)
}
ver, err := tarFromLocalDir(m.ChartPath, dep.Name, dep.Repository, dep.Version) ver, err := tarFromLocalDir(m.ChartPath, dep.Name, dep.Repository, dep.Version)
if err != nil { if err != nil {
return err return err
@ -335,7 +339,9 @@ func (m *Manager) getRepoNames(deps []*chartutil.Dependency) (map[string]string,
return nil, err return nil, err
} }
if m.Debug {
fmt.Fprintf(m.Out, "Repository from local path: %s\n", dd.Repository) fmt.Fprintf(m.Out, "Repository from local path: %s\n", dd.Repository)
}
reposMap[dd.Name] = dd.Repository reposMap[dd.Name] = dd.Repository
continue continue
} }

Loading…
Cancel
Save