Skip to content

Commit 9a77239

Browse files
authored
Merge pull request #272 from nicholasSUSE/fix-ordering-bug-vsphere
small-fix
2 parents 9f14e63 + 1de6f8e commit 9a77239

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/helm/helm.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ func CreateOrUpdateHelmIndex(ctx context.Context, rootFs billy.Filesystem) error
8484
// Only -alpha., -beta., and -rc. prerelease identifiers are allowed
8585
// Returns an error if any version contains an invalid prerelease identifier
8686
func CheckVersionStandards(ctx context.Context, new *helmRepo.IndexFile) error {
87-
allowedPrereleases := []string{"-alpha.", "-beta.", "-rc", "-rancher."}
87+
allowedPrereleases := []string{"-alpha.", "-beta.", "-rc", "-rancher"}
8888
logger.Log(ctx, slog.LevelInfo, "checking version standars", slog.Any("allowed", allowedPrereleases))
8989

9090
for chartName, chartVersions := range new.Entries {

0 commit comments

Comments
 (0)