Skip to content

Commit 66ca09a

Browse files
committed
fix: sanitize version
Signed-off-by: Chris Laprun <[email protected]>
1 parent 689ca61 commit 66ca09a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bundle-generator/runtime/src/main/java/io/quarkiverse/operatorsdk/bundle/runtime/CSVMetadataHolder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ public CSVMetadataHolder(String bundleName, String csvName, String description,
138138
this.bundleName = bundleName;
139139
assert version != null;
140140
this.version = version;
141-
this.csvName = csvName == null ? bundleName + ".v" + version : csvName;
141+
this.csvName = csvName == null ? bundleName + ".v" + version.toLowerCase() : csvName;
142142
this.description = description;
143143
this.displayName = displayName;
144144
this.annotations = annotations;

0 commit comments

Comments
 (0)