Fix empty git branch and remote value issues

This commit is contained in:
Christian Beikov 2024-06-14 17:39:17 +02:00
parent e65cbe52bf
commit f0112a9aea
1 changed files with 2 additions and 2 deletions

View File

@ -233,14 +233,14 @@ def releaseChecksTask = tasks.register( "releaseChecks" ) {
String gitBranchLocal
String gitRemoteLocal
if (project.hasProperty('gitBranch')) {
if (project.hasProperty('gitBranch') && !project.property('gitBranch').isEmpty()) {
gitBranchLocal = project.property('gitBranch')
}
else {
gitBranchLocal = executeGitCommand( 'branch', '--show-current' ).trim()
}
if (project.hasProperty('gitRemote')) {
if (project.hasProperty('gitRemote') && !project.hasProperty('gitRemote').isEmpty()) {
gitRemoteLocal = project.property('gitRemote')
}
else {