Skip to content

Commit

Permalink
Added versioning output.
Browse files Browse the repository at this point in the history
  • Loading branch information
kj-actoron committed Feb 25, 2021
1 parent 937e648 commit ae15540
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/buildutils/versioning.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ Object fetchNextBuildNameFromGitTag()
patch++
buildname = createBuildname(version, patch, branchpatch, true)
}

println 'Working on Jadex Version ' + buildname;
return buildname!=null ? buildname : createBuildname(version, patch, branchpatch, false);
}

Expand Down Expand Up @@ -109,6 +109,7 @@ int getLatestPatchVersion(version, versionprops)
{
for(String tag: tags)
{
println 'checking tag> ' + tag;
if(tag.startsWith("tag: "+version+"."))
{
tag = tag.substring(("tag: "+version+".").length())
Expand Down

0 comments on commit ae15540

Please sign in to comment.