We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af4bf46 commit 990e880Copy full SHA for 990e880
src/main/groovy/net/researchgate/release/tasks/PreTagCommit.groovy
@@ -22,7 +22,7 @@ class PreTagCommit extends BaseReleaseTask {
22
if (projectAttributes.usesSnapshot || projectAttributes.versionModified || projectAttributes.propertiesFileCreated) {
23
// should only be committed if the project was using a snapshot version.
24
String message = extension.preTagCommitMessage.get() + " '${tagName()}'."
25
- if (extension.preCommitText) {
+ if (extension.preCommitText.get()) {
26
message = "${extension.preCommitText.get()} ${message}"
27
}
28
if (projectAttributes.propertiesFileCreated) {
0 commit comments