diff --git a/pkg/relocator/chart.go b/pkg/relocator/chart.go index 2ccb8e5..dba6ae1 100644 --- a/pkg/relocator/chart.go +++ b/pkg/relocator/chart.go @@ -96,7 +96,7 @@ func RelocateChartDir(chartPath string, prefix string, opts ...RelocateOption) e if cfg.Recursive { for _, dep := range chart.Dependencies() { if err := relocateChart(dep, prefix, cfg); err != nil { - allErrors = errors.Join(allErrors, fmt.Errorf("failed to reloacte Helm SubChart %q: %v", dep.Chart().ChartFullPath(), err)) + allErrors = errors.Join(allErrors, fmt.Errorf("failed to relocate Helm SubChart %q: %v", dep.Chart().ChartFullPath(), err)) } } }