Skip to content
Snippets Groups Projects
Commit 0e2401f8 authored by Reiner Jung's avatar Reiner Jung
Browse files

Fixed build id determination.

parent f485e4b5
No related branches found
No related tags found
No related merge requests found
......@@ -62,8 +62,8 @@ public class CompileResultsMain {
ObjectNode objectNode = (ObjectNode)node;
JsonNode buildValue = objectNode.get("build");
if (buildValue != null) {
if (build <= buildValue) {
build = buildValue + 1;
if (build <= buildValue.asLong()) {
build = buildValue.asLong() + 1;
}
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment