Skip to content

Commit

Permalink
chore: fix lints
Browse files Browse the repository at this point in the history
Signed-off-by: Tyler Gillson <tyler.gillson@gmail.com>
  • Loading branch information
TylerGillson committed Sep 6, 2024
1 parent c4f49e9 commit 2fc7268
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/helm/helm.go
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ func (c *CLIClient) run(name, namespace string, options Options, command string,
}

// Set values
if options.SetValues != nil && len(options.SetValues) > 0 {
if len(options.SetValues) > 0 {
args = append(args, "--set")

setString := ""
Expand All @@ -178,7 +178,7 @@ func (c *CLIClient) run(name, namespace string, options Options, command string,
}

// Set string values
if options.SetStringValues != nil && len(options.SetStringValues) > 0 {
if len(options.SetStringValues) > 0 {
args = append(args, "--set-string")

setString := ""
Expand Down

0 comments on commit 2fc7268

Please sign in to comment.