Skip to content

Commit 8555c9d

Browse files
GaoXiaodongxdonggao
andauthored
fix(application): fix install app error (#2296)
Co-authored-by: xdonggao <[email protected]>
1 parent 1909322 commit 8555c9d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/application/helm/action/install.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ func (c *Client) InstallWithLocal(ctx context.Context, options *InstallOptions,
104104
histClient.Max = 1
105105
rels, err := histClient.Run(options.ReleaseName)
106106
if err != nil {
107-
if errors.Is(err, driver.ErrReleaseNotFound) {
107+
if !errors.Is(err, driver.ErrReleaseNotFound) {
108108
return nil, err
109109
}
110110
} else {

0 commit comments

Comments
 (0)