Skip to content

Commit 34ae431

Browse files
committed
Fix logging
1 parent 8166ca9 commit 34ae431

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/groovy/org/labkey/gradle/util/BuildUtils.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -521,7 +521,7 @@ class BuildUtils
521521
project.logger.info("${project.path} git revision: ${revision}")
522522
ret.setProperty(VCS_REVISION_PROP_NAME, revision)
523523
def tag = "${gitCmd} -C ${project.projectDir.absolutePath} describe --tags --exact-match 2> /dev/null".execute().text.trim()
524-
project.logger.info("${project.path} git tag: ${revision}")
524+
project.logger.info("${project.path} git tag: ${tag}")
525525
if (!tag.isEmpty() && !tag.equals(revision))
526526
ret.setProperty(VCS_TAG_PROP_NAME, tag)
527527
else

0 commit comments

Comments
 (0)