Skip to content

Commit

Permalink
fix: lint warnings.
Browse files Browse the repository at this point in the history
  • Loading branch information
travishein committed Dec 17, 2024
1 parent 949566c commit 2713447
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/skaffold/deploy/helm/helm.go
Original file line number Diff line number Diff line change
Expand Up @@ -398,11 +398,11 @@ func (h *Deployer) Dependencies() ([]string, error) {
return true, nil
}

expanded_path, e := util.ExpandEnvTemplateOrFail(release.ChartPath, nil)
expandedPath, e := util.ExpandEnvTemplateOrFail(release.ChartPath, nil)
if e != nil {
return deps, helm.UserErr("issue expanding variable", e)
}
if err := walk.From(expanded_path).When(isDep).AppendPaths(&deps); err != nil {
if err := walk.From(expandedPath).When(isDep).AppendPaths(&deps); err != nil {
return deps, helm.UserErr("issue walking releases", err)
}
}
Expand Down

0 comments on commit 2713447

Please sign in to comment.