Skip to content

Commit

Permalink
fix(application): fix install app error (#2296)
Browse files Browse the repository at this point in the history
Co-authored-by: xdonggao <xdonggao@tencent.com>
  • Loading branch information
GaoXiaodong and xdonggao authored May 30, 2023
1 parent 1909322 commit 8555c9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/application/helm/action/install.go
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ func (c *Client) InstallWithLocal(ctx context.Context, options *InstallOptions,
histClient.Max = 1
rels, err := histClient.Run(options.ReleaseName)
if err != nil {
if errors.Is(err, driver.ErrReleaseNotFound) {
if !errors.Is(err, driver.ErrReleaseNotFound) {
return nil, err
}
} else {
Expand Down

0 comments on commit 8555c9d

Please sign in to comment.