You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
println"Warning: getReleaseInfo() found an errorneous tag: \""+ tag +"\". Syntax Error: The Tag didn't contain the expected number of dash-seperated keywords"
90
93
returnnull;
91
94
}
92
95
93
96
if (mainVersion.size() ==0) {
94
97
// syntax error
98
+
println"Warning: getReleaseInfo() found an errorneous tag: \""+ tag +"\". Syntax Error: The Main Version (e.g. 3.1) couldn't be extracted successfully."
95
99
returnnull;
96
100
}
97
101
98
102
parts = mainVersion.split("\\.");
103
+
if (parts.size() ==2) {
104
+
mainVersion = mainVersion +".0"// Assume Revision Zero
105
+
parts = mainVersion.split("\\.");
106
+
}
107
+
99
108
if (parts.size() !=3) {
100
109
// syntax error
110
+
println"Warning: getReleaseInfo() found an errorneous tag: \""+ tag +"\". Syntax Error: The Tags Main Version didn't consist of two/three parts"
0 commit comments