We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 27eee67 commit e237851Copy full SHA for e237851
prospero-common/src/main/java/org/wildfly/prospero/VersionLogger.java
@@ -55,7 +55,7 @@ public static String getVersion() throws Exception {
55
URL url = resources.nextElement();
56
Manifest manifest = new Manifest(url.openStream());
57
final String specTitle = manifest.getMainAttributes().getValue("Specification-Title");
58
- if ("prospero-common".equals(specTitle) || "prospero-cli".equals(specTitle)) {
+ if ("Prospero Common".equals(specTitle) || "Prospero CLI".equals(specTitle)) {
59
return StringUtils.join(manifest.getMainAttributes().getValue("Implementation-Version"));
60
}
61
0 commit comments