mirror of
https://github.com/helm/helm.git
synced 2026-04-21 22:27:03 -04:00
chore: fix a typo in manager.go
actally -> actually Signed-off-by: Yarden Shoham <git@yardenshoham.com>
This commit is contained in:
parent
4e447d87cd
commit
15e6066a45
1 changed files with 1 additions and 1 deletions
|
|
@ -248,7 +248,7 @@ func (m *Manager) downloadAll(deps []*chart.Dependency) error {
|
|||
destPath := filepath.Join(m.ChartPath, "charts")
|
||||
tmpPath := filepath.Join(m.ChartPath, "tmpcharts")
|
||||
|
||||
// Check if 'charts' directory is not actally a directory. If it does not exist, create it.
|
||||
// Check if 'charts' directory is not actually a directory. If it does not exist, create it.
|
||||
if fi, err := os.Stat(destPath); err == nil {
|
||||
if !fi.IsDir() {
|
||||
return errors.Errorf("%q is not a directory", destPath)
|
||||
|
|
|
|||
Loading…
Reference in a new issue