Skip to content

Commit

Permalink
fix: missing return
Browse files Browse the repository at this point in the history
  • Loading branch information
acid-chicken committed May 22, 2024
1 parent f03cfe1 commit b5db6eb
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions hariko/cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,7 @@ func deploy(namespace string, packageName string, repositoryName string, reposit
if err := run(exec.Command("helm", "upgrade", "-n", namespace, packageName, repositoryName+"/"+packageName), log); err != nil {
return err
}
return nil
}

func run(cmd *exec.Cmd, log io.Writer) error {
Expand Down

0 comments on commit b5db6eb

Please sign in to comment.