Skip to content

Commit 70722ec

Browse files
committed
Removed the return of an error for chart exists.
1 parent 43caffb commit 70722ec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

helm/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ func (h *Helm) PackagePush(
137137
}
138138

139139
if chartExists {
140-
return false, fmt.Errorf("Chart already exists on server.")
140+
return false, nil
141141
}
142142

143143
c, err = c.WithExec([]string{"helm", "dependency", "update", "."}).

0 commit comments

Comments
 (0)