We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
*
1 parent 35e03ee commit f3fecffCopy full SHA for f3fecff
starter/src/main/java/io/javaoperatorsdk/operator/springboot/starter/CRDApplier.java
@@ -61,7 +61,7 @@ public void apply() {
61
62
private Resource[] findResources() {
63
final var resourceResolver = new PathMatchingResourcePatternResolver();
64
- final var resourceLocationPattern = Paths.get(crdPath, '*' + crdSuffix).toString();
+ final var resourceLocationPattern = Paths.get(crdPath) + "/*" + crdSuffix;
65
try {
66
return resourceResolver.getResources(resourceLocationPattern);
67
} catch (IOException e) {
0 commit comments