fix: correct import comment in statuswait.go from v3 to v4

The import comment in pkg/kube/statuswait.go still referenced
helm.sh/helm/v3/pkg/kube while all other files in the package
correctly reference helm.sh/helm/v4/pkg/kube. This mismatch
causes downstream processing errors (e.g. kythe) when vendoring
Helm.

Fixes #31846

Signed-off-by: rohansood10 <rohansood10@users.noreply.github.com>
pull/31852/head
rohansood10 5 days ago
parent 794372e317
commit c59c140ce0

@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
limitations under the License.
*/
package kube // import "helm.sh/helm/v3/pkg/kube"
package kube // import "helm.sh/helm/v4/pkg/kube"
import (
"context"

Loading…
Cancel
Save